copy-acl: enhance Solaris ACL error handling
[gnulib.git] / lib / memcmp.c
index 41ea7a9..0c7ce5e 100644 (file)
@@ -1,5 +1,5 @@
-/* Copyright (C) 1991, 1993, 1995, 1997-1998, 2003, 2006, 2009 Free Software
-   Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1995, 1997-1998, 2003, 2006, 2009-2010 Free
+   Software Foundation, Inc.
 
    Contributed by Torbjorn Granlund (tege@sics.se).
 
@@ -65,7 +65,7 @@ typedef unsigned char byte;
 #ifdef WORDS_BIGENDIAN
 # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1)
 #else
-# define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b))
+# define CMP_LT_OR_GT(a, b) memcmp_bytes (a, b)
 #endif
 
 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE!  */