summaryrefslogtreecommitdiff
path: root/src/comm.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-01-22 08:11:04 +0000
committerJim Meyering <jim@meyering.net>2002-01-22 08:11:04 +0000
commit64eb355c7669f4a1fed388909436b29541d6e3db (patch)
treef1f6412937d0600e561f7b3e62fc063c260ce4a7 /src/comm.c
parent023877ac2729621dcbd093f41bfcfad9b0d4ed17 (diff)
downloadcoreutils-64eb355c7669f4a1fed388909436b29541d6e3db.tar.xz
Include xmemcoll.h, not memcoll.h.
Use xmemcoll instead of memcoll.
Diffstat (limited to 'src/comm.c')
-rw-r--r--src/comm.c6
1 files changed, 3 insertions, 3 deletions
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
{