From 77e927affd576fcbb751144f60b098b7f0427045 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Fri, 16 Mar 2012 21:02:54 -0700 Subject: [PATCH] Fix warnings when uintptr_t is larger than int. * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid warnings. --- ChangeLog | 3 +++ sysdeps/unix/sysv/linux/shmat.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index df662af..c58e919 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2012-03-16 David S. Miller + * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid + warnings. + [BZ #6471] * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors properly. diff --git a/sysdeps/unix/sysv/linux/shmat.c b/sysdeps/unix/sysv/linux/shmat.c index dd75491..d01bb1b 100644 --- a/sysdeps/unix/sysv/linux/shmat.c +++ b/sysdeps/unix/sysv/linux/shmat.c @@ -55,7 +55,7 @@ shmat (shmid, shmaddr, shmflg) if (INTERNAL_SYSCALL_ERROR_P (resultvar, err)) { __set_errno (INTERNAL_SYSCALL_ERRNO (resultvar, err)); - return (void *) -1; + return (void *) -1l; } return BOUNDED_N (raddr, length); -- 2.7.4