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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user