OSDN Git Service

Remove a gcc-4.5 compilation warning:
authorJing Yu <jingyu@google.com>
Fri, 21 May 2010 03:25:48 +0000 (20:25 -0700)
committerDavid 'Digit' Turner <digit@google.com>
Wed, 9 Jun 2010 20:24:22 +0000 (13:24 -0700)
bionic/libc/include/../include/stdlib.h: In function 'int grantpt(int)':
bionic/libc/include/../include/stdlib.h:138:23: warning: parameter '__fd' set but not used [-Wunused-but-set-parameter]

By adding __attribute((unused)) to __fd, the warning is gone, and this
attribute is compatible with gcc-4.4.0, gcc-4.3.1 gcc-4.2.1.
There is no any side effect.

Change-Id: I385f0f4da1013ffd1499e391eac9123aafe1f7a5

libc/include/stdlib.h

index 41e8d26..5a991ac 100644 (file)
@@ -135,7 +135,7 @@ extern char*  ptsname(int);
 extern int    ptsname_r(int, char*, size_t);
 extern int    getpt(void);
 
-static __inline__ int grantpt(int __fd)
+static __inline__ int grantpt(int __fd __attribute((unused)))
 {
   (void)__fd;
   return 0;     /* devpts does this all for us! */