Fix code fragment with undefined behavior.
[idzebra-moved-to-github.git] / dfa / bset.c
index b9005bd..49d4212 100644 (file)
@@ -258,7 +258,8 @@ void pr_charBSet (BSetHandle *sh, BSet src, void (*f) (int))
         i1 = trav_BSet (sh, src, ++i);
         if (i1 == i)
         {
-            while ((i1=trav_BSet (sh, src, ++i)) == i)
+            ++i;
+            while ((i1=trav_BSet (sh, src, i)) == i)
                 ;
             if (i != i0+2)
                 f ('-');
@@ -274,6 +275,7 @@ void pr_charBSet (BSetHandle *sh, BSet src, void (*f) (int))
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab