1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-16 01:45:09 +02:00

convert a > expression to the equivalent < one

This commit is contained in:
Jim Meyering
2000-12-07 14:13:51 +00:00
parent b615d79ac3
commit bcc94017bc

View File

@@ -41,6 +41,6 @@ strip_trailing_slashes (char *path)
int last;
last = strlen (path) - 1;
while (last > 0 && ISSLASH (path[last]))
while (0 < last && ISSLASH (path[last]))
path[last--] = '\0';
}