1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-12 15:06:44 +02:00

Add a comment to go with the last change.

This commit is contained in:
Jim Meyering
2005-10-05 18:56:29 +00:00
parent b185a8b904
commit 132aaa2eac

View File

@@ -1720,6 +1720,8 @@ sortlines_temp (struct line *lines, size_t nlines, struct line *temp)
{
if (nlines == 2)
{
/* Declare `swap' as int, not bool, to work around a bug in
an AIX 5.3 compiler in 64-bit mode. */
int swap = (0 < compare (&lines[-1], &lines[-2]));
temp[-1] = lines[-1 - swap];
temp[-2] = lines[-2 + swap];