From 64eb355c7669f4a1fed388909436b29541d6e3db Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 22 Jan 2002 08:11:04 +0000 Subject: Include xmemcoll.h, not memcoll.h. Use xmemcoll instead of memcoll. --- src/comm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/comm.c') diff --git a/src/comm.c b/src/comm.c index 568968fd1..51d4462a9 100644 --- a/src/comm.c +++ b/src/comm.c @@ -27,7 +27,7 @@ #include "linebuffer.h" #include "error.h" #include "hard-locale.h" -#include "memcoll.h" +#include "xmemcoll.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "comm" @@ -178,8 +178,8 @@ compare_files (char **infiles) { #ifdef ENABLE_NLS if (hard_LC_COLLATE) - order = memcoll (thisline[0]->buffer, thisline[0]->length - 1, - thisline[1]->buffer, thisline[1]->length - 1); + order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1, + thisline[1]->buffer, thisline[1]->length - 1); else #endif { -- cgit v1.2.3-54-g00ecf