From: H.J. Lu Date: Wed, 16 May 2012 17:22:18 +0000 (-0700) Subject: Replace long int with __syscall_slong_t in sys/msg.h X-Git-Tag: glibc-2.16-tps~291 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=180be88bf57c967a66e7152e58147a01d78a63cc;p=thirdparty%2Fglibc.git Replace long int with __syscall_slong_t in sys/msg.h --- diff --git a/ChangeLog b/ChangeLog index 52507ca721d..afe5501aa06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-05-16 H.J. Lu + + * sysvipc/sys/msg.h (msgbuf): Replace long int with + __syscall_slong_t. + 2012-05-16 H.J. Lu * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't diff --git a/sysvipc/sys/msg.h b/sysvipc/sys/msg.h index 4c8d62cbf7d..0dd98991a09 100644 --- a/sysvipc/sys/msg.h +++ b/sysvipc/sys/msg.h @@ -51,7 +51,7 @@ typedef __ssize_t ssize_t; /* Template for struct to be used as argument for `msgsnd' and `msgrcv'. */ struct msgbuf { - long int mtype; /* type of received/sent message */ + __syscall_slong_t mtype; /* type of received/sent message */ char mtext[1]; /* text of the message */ }; #endif