summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/binary-io.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index beb8356705..8f372dfb96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2018-03-05 Paul Eggert <eggert@cs.ucla.edu>
+ binary-io: pacify gcc -Wunused-parameter
+ Problem reported by Reuben Thomas in:
+ https://lists.gnu.org/r/bug-gnulib/2018-03/msg00005.html
+ * lib/binary-io.h (__gl_setmode, __gl_setmode_check):
+ Use _GL_UNUSED where appropriate.
+
fflush: adjust to glibc 2.28 libio.h removal
Problem reported by Daniel P. Berrangé in:
https://lists.gnu.org/r/bug-gnulib/2018-03/msg00000.html
diff --git a/lib/binary-io.h b/lib/binary-io.h
index cce1301d56..1f21fc051f 100644
--- a/lib/binary-io.h
+++ b/lib/binary-io.h
@@ -47,10 +47,8 @@ _GL_INLINE_HEADER_BEGIN
/* Use a function rather than a macro, to avoid gcc warnings
"warning: statement with no effect". */
BINARY_IO_INLINE int
-__gl_setmode (int fd, int mode)
+__gl_setmode (int fd _GL_UNUSED, int mode _GL_UNUSED)
{
- (void) fd;
- (void) mode;
return O_BINARY;
}
#endif
@@ -59,7 +57,7 @@ __gl_setmode (int fd, int mode)
extern int __gl_setmode_check (int);
#else
BINARY_IO_INLINE int
-__gl_setmode_check (int fd) { return 0; }
+__gl_setmode_check (int fd _GL_UNUSED) { return 0; }
#endif
/* Set FD's mode to MODE, which should be either O_TEXT or O_BINARY.