1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-11 11:37:48 +02:00
This commit is contained in:
Jim Meyering
1997-07-13 03:07:36 +00:00
parent 4b84ea8745
commit d0c515b45c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -251,7 +251,7 @@ null (VALUE *v)
case integer:
return v->u.i == 0;
case string:
return v->u.s[0] == '\0' || strcmp(v->u.s, "0") == 0;
return v->u.s[0] == '\0' || strcmp (v->u.s, "0") == 0;
default:
abort ();
}