diff options
author | Pekka Seppänen <pexu@sourceware.mail.kapsi.fi> | 2021-04-16 00:07:28 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-04-16 00:09:26 +0930 |
commit | 4c79248a46100016e902f1489ce1c38a42608460 (patch) | |
tree | df35b5af155064894745be70a9ff25c4e5743609 | |
parent | 5809fbf2e289fc524d3086da62918876b66cefa8 (diff) | |
download | gdb-4c79248a46100016e902f1489ce1c38a42608460.zip gdb-4c79248a46100016e902f1489ce1c38a42608460.tar.gz gdb-4c79248a46100016e902f1489ce1c38a42608460.tar.bz2 |
PR27734, get_stat_atime_ns/get_stat_mtime_ns might not use parameter
PR 27725
* rename.c (get_stat_atime_ns): Add ATTRIBUTE_UNUSED.
(get_stat_mtime_ns): Likewise.
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/rename.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 212c353..7390ba6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2021-04-15 Pekka Seppänen <pexu@sourceware.mail.kapsi.fi> + + PR 27725 + * rename.c (get_stat_atime_ns): Add ATTRIBUTE_UNUSED. + (get_stat_mtime_ns): Likewise. + 2021-04-15 Alan Modra <amodra@gmail.com> PR 27725 diff --git a/binutils/rename.c b/binutils/rename.c index 2cbe464..fe6019b 100644 --- a/binutils/rename.c +++ b/binutils/rename.c @@ -104,7 +104,7 @@ simple_copy (int fromfd, const char *to, /* Return the nanosecond component of *ST's access time. */ inline long int -get_stat_atime_ns (struct stat const *st) +get_stat_atime_ns (struct stat const *st ATTRIBUTE_UNUSED) { # if defined STAT_TIMESPEC return STAT_TIMESPEC (st, st_atim).tv_nsec; @@ -117,7 +117,7 @@ get_stat_atime_ns (struct stat const *st) /* Return the nanosecond component of *ST's data modification time. */ inline long int -get_stat_mtime_ns (struct stat const *st) +get_stat_mtime_ns (struct stat const *st ATTRIBUTE_UNUSED) { # if defined STAT_TIMESPEC return STAT_TIMESPEC (st, st_mtim).tv_nsec; |