Author: petdance
Date: Fri Jul  6 22:33:26 2007
New Revision: 19666

Modified:
   trunk/compilers/imcc/main.c

Log:
Don't increment on the null

Modified: trunk/compilers/imcc/main.c
==============================================================================
--- trunk/compilers/imcc/main.c (original)
+++ trunk/compilers/imcc/main.c Fri Jul  6 22:33:26 2007
@@ -550,7 +550,7 @@
     if (interp->run_core & PARROT_SWITCH_CORE)
         opt_desc[i++] = 't';
 
-    opt_desc[i++] = '\0';
+    opt_desc[i] = '\0';
     return;
 }
 

Reply via email to