summaryrefslogtreecommitdiff
path: root/scanflags.c
diff options
context:
space:
mode:
Diffstat (limited to 'scanflags.c')
-rw-r--r--scanflags.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scanflags.c b/scanflags.c
index f75aa82..1d19cf4 100644
--- a/scanflags.c
+++ b/scanflags.c
@@ -42,7 +42,7 @@ sf_push (void)
if (_sf_top_ix + 1 >= _sf_max)
_sf_stk = (scanflags_t*) flex_realloc ( (void*) _sf_stk, sizeof(scanflags_t) * (_sf_max += 32));
- // copy the top element
+ /* copy the top element */
_sf_stk[_sf_top_ix + 1] = _sf_stk[_sf_top_ix];
++_sf_top_ix;
}