Fix -Wunused warning in dec-thread.c.
authorJoel Brobecker <brobecker@gnat.com>
Tue, 12 Jan 2010 07:51:09 +0000 (07:51 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 12 Jan 2010 07:51:09 +0000 (07:51 +0000)
        * dec-thread.c (dec_thread_count_gdb_threads)
        (dec_thread_add_gdb_thread): Prevent -Wunused warning.

gdb/ChangeLog
gdb/dec-thread.c

index e377ad2975067b2fe8f686b4f270e2f6ecbe951c..54c9c4299c0a83b89e1bdf640ad2bf736fe62ca8 100644 (file)
@@ -1,3 +1,9 @@
+2010-01-12  Joel Brobecker  <brobecker@adacore.com>
+
+       Fix -Wunused warning in dec-thread.c.
+       * dec-thread.c (dec_thread_count_gdb_threads)
+       (dec_thread_add_gdb_thread): Prevent -Wunused warning.
+
 2010-01-12  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-valprint.c (ada_print_floating): Remove trailing space.
index 50832210a28a2de097a627b80aa20eaf679ca1bd..be6db4c0ac5a6967dbdecd6b32b47463e96d6447 100644 (file)
@@ -352,7 +352,7 @@ dec_thread_count_gdb_threads (struct thread_info *ignored, void *context)
 {
   int *count = (int *) context;
 
-  *count++;
+  (void) *count++; /* The cast to void is to prevent a -Wunused warning.  */
   return 0;
 }
 
@@ -366,7 +366,7 @@ dec_thread_add_gdb_thread (struct thread_info *info, void *context)
   struct thread_info ***listp = (struct thread_info ***) context;
   
   **listp = info;
-  *listp++;
+  (void) *listp++; /* The cast to void is to prevent a -Wunused warning.  */
   return 0;
 }