Fix build error in aix-thread.c
authorSimon Marchi <simon.marchi@ericsson.com>
Wed, 12 Apr 2017 14:46:13 +0000 (10:46 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Wed, 12 Apr 2017 14:46:48 +0000 (10:46 -0400)
Obvious fix for:

aix-thread.c: In function 'char* pd_status2str(int)':
aix-thread.c:163:33: error: deprecated conversion from string constant to 'char*' [-Werror=write-strings]
     case PTHDB_SUCCESS:  return "SUCCESS";
                                 ^
gdb/ChangeLog:

* aix-thread.c (pd_status2str): Change return type to const char *.

gdb/ChangeLog
gdb/aix-thread.c

index aa210bb..41ed80b 100644 (file)
@@ -1,3 +1,7 @@
+2017-04-12  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * aix-thread.c (pd_status2str): Change return type to const char *.
+
 2017-04-12  Pedro Alves  <palves@redhat.com>
 
        * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
index 05024df..ced6203 100644 (file)
@@ -155,7 +155,7 @@ static pthdb_session_t pd_session;
 /* Return a printable representation of pthdebug function return
    STATUS.  */
 
-static char *
+static const char *
 pd_status2str (int status)
 {
   switch (status)