diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/inflow.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cef090c..f5c0072 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2016-07-14 Tom Tromey <tom@tromey.com> + * inflow.c (child_terminal_ours_1): Use ATTRIBUTE_UNUSED. + +2016-07-14 Tom Tromey <tom@tromey.com> + * corefile.c (reopen_exec_file): Only examine st.st_mtime if stat succeeded. diff --git a/gdb/inflow.c b/gdb/inflow.c index 4cbcd5c..27ce0b0 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -398,7 +398,7 @@ child_terminal_ours_1 (int output_only) pgrp. */ sighandler_t osigttou = NULL; #endif - int result; + int result ATTRIBUTE_UNUSED; #ifdef SIGTTOU if (job_control) |