blob: 774c3105dcc8d57cfe74a50b5b345b3b22398c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Index: src/hat/runtime/getconstr.c
===================================================================
RCS file: /usr/src/master/nhc/src/hat/runtime/getconstr.c,v
retrieving revision 1.13
diff -u -r1.13 getconstr.c
--- src/hat/runtime/getconstr.c 2001/11/02 14:59:08 1.13
+++ src/hat/runtime/getconstr.c 2002/04/17 15:04:07
@@ -16,7 +16,7 @@
NodePtr np;
char *sp;
- for (sp = s; *sp != '\0'; sp++);
+ for (sp = s; *sp++ != '\0';);
np = mkNil();
for (; --sp >= s;)
np = mkCons(mkChar(*sp), np);
|