summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2010-03-03 05:58:09 -0800
committerUlrich Drepper <drepper@redhat.com>2010-03-03 05:58:09 -0800
commit2e9337f58ab3165b54acd8ebd84577e3a51f79be (patch)
tree58726880c78e60bd78eb99c1b8118723c60680ca
parent321029f1c35db68c9d2e15408871030a36694541 (diff)
downloadglibc-2e9337f58ab3165b54acd8ebd84577e3a51f79be.tar.gz
glibc-2e9337f58ab3165b54acd8ebd84577e3a51f79be.tar.xz
glibc-2e9337f58ab3165b54acd8ebd84577e3a51f79be.zip
(INSERT_WORDS64): Fix argument order.
-rw-r--r--ChangeLog4
-rw-r--r--math/math_private.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b3b1acf224..a9e7a04b4f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-03  David S. Miller  <davem@davemloft.net>
+
+	* math/math_private.h (INSERT_WORDS64): Fix argument order.
+
 2010-03-03  Aurelien Jarno  <aurelien@aurel32.net>
 
 	* sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: New file.
diff --git a/math/math_private.h b/math/math_private.h
index fade7e1181..e5ca61f0b8 100644
--- a/math/math_private.h
+++ b/math/math_private.h
@@ -111,7 +111,7 @@ do {								\
 } while (0)
 
 /* Get all in one, efficient on 64-bit machines.  */
-#define INSERT_WORDS64(i,d)					\
+#define INSERT_WORDS64(d,i)					\
 do {								\
   ieee_double_shape_type iw_u;					\
   iw_u.word = (i);						\