summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-05-09 02:49:22 +0000
committersabetts <sabetts>2006-05-09 02:49:22 +0000
commit6feeebf4098ff5ee66bc3d91249e26d5264bfed2 (patch)
tree773129af1271d90513d5738d36bfa97c4503cd96 /contrib
parentcad59769b61b4ccd618f72355d1011eaf0008b96 (diff)
downloadratpoison-6feeebf4098ff5ee66bc3d91249e26d5264bfed2.zip
(ws_init): loop from 1 not 0
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/rpws2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/rpws b/contrib/rpws
index 181b964..361e3d7 100755
--- a/contrib/rpws
+++ b/contrib/rpws
@@ -60,7 +60,7 @@ sub ws_init
rp_call( "only" );
my $i;
- for( my $i = 0; $i < $num; $i++ )
+ for( my $i = 1; $i < $num; $i++ )
{
ws_init_ws( $i );
}