1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 02:36:16 +02:00

(CMP_WITH_IGNORE): Don't assume that the difference

between two size_t values can be stored in an int; this doesn't
work, for example, on 64-bit Solaris.
This commit is contained in:
Jim Meyering
2002-01-21 22:02:28 +00:00
parent 012945ff54
commit 2d1ec93821

View File

@@ -1431,7 +1431,7 @@ keycompare (const struct line *a, const struct line *b)
++textb; \
} \
\
diff = (lima - texta) - (limb - textb); \
diff = (texta < lima) - (textb < limb); \
} \
while (0)