]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/testsuite/ChangeLog
gdb.base/fileio.c: Fix several -Wreturn-type warnings
authorPedro Alves <palves@redhat.com>
Thu, 18 May 2017 10:37:55 +0000 (11:37 +0100)
committerPedro Alves <palves@redhat.com>
Thu, 18 May 2017 11:56:16 +0000 (12:56 +0100)
commitc8f6abd10d62f82874e31959bf986606bd919d39
tree2066efee446e2f0bee0f49402d0226d03a5cbb42
parentd2a03b77450dce58f6b4f9f7fdd3c346a555bcf7
gdb.base/fileio.c: Fix several -Wreturn-type warnings

All the "test_" functions warn like:

  src/gdb/testsuite/gdb.base/fileio.c: In function ‘test_close’:
  src/gdb/testsuite/gdb.base/fileio.c:280:1: warning: control reaches end of non-void function [-Wreturn-type]
   }
   ^

Nothing looks at the return of these functions, so just make them
return void.  While at it, "()" is not the same as "(void)" in C - fix
that too.

gdb/ChangeLog:
2017-05-18  Pedro Alves  <palves@redhat.com>

* gdb.base/fileio.c (stop, test_open, test_write, test_read)
(test_lseek, test_close, test_stat, test_fstat, test_isatty)
(test_system, test_rename, test_unlink, test_time): Change
prototypes.
* gdb.base/fileio.exp (stop_msg): Adjust.
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/fileio.c
gdb/testsuite/gdb.base/fileio.exp