|
Check-in Number:
|
1332 | |
| Date: |
2001-Nov-14 13:21:05 (local)
2001-Nov-14 12:21:05 (UTC) |
| User: | rse |
| Branch: | |
| Comment: |
be pedantic and use the symbol instead of hard-coded value |
| Tickets: |
|
| Inspections: |
|
| Files: |
|
ossp-pkg/var/var.c 1.15 -> 1.16
--- var.c 2001/11/14 12:02:40 1.15
+++ var.c 2001/11/14 12:21:05 1.16
@@ -280,7 +280,7 @@
var_rc_t rc;
while (*src < end && **src != '}') {
- if ((rc = expand_simple_hex(src, dst, end)) != 0)
+ if ((rc = expand_simple_hex(src, dst, end)) != VAR_OK)
return rc;
++(*src);
}
|
|