aboutsummaryrefslogtreecommitdiff
path: root/stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'stack.c')
-rw-r--r--stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.c b/stack.c
index cf169c5..c915afd 100644
--- a/stack.c
+++ b/stack.c
@@ -8,7 +8,7 @@ PositionStack ps_new(void) {
}
int ps_push(PositionStack *ps, Position pos) {
- //TODO: check for stack overflow
+ /*TODO: check for stack overflow */
ps->arr[ps->top] = pos;
ps->top += 1;
return 0;