diff options
author | Nick Clifton <nickc@redhat.com> | 2007-07-19 16:17:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-07-19 16:17:38 +0000 |
commit | 0e51e5553c649fbde45e5b60bd56cb025cedfabd (patch) | |
tree | 39156ae8283c687fbcbf668961eb560eaea0e9bc /binutils | |
parent | 44efa07abfe172788c7dea691ceb5ee8e0135f12 (diff) | |
download | gdb-0e51e5553c649fbde45e5b60bd56cb025cedfabd.zip gdb-0e51e5553c649fbde45e5b60bd56cb025cedfabd.tar.gz gdb-0e51e5553c649fbde45e5b60bd56cb025cedfabd.tar.bz2 |
PR binutils/4802
* srconv.c (strip_suffix): Add const qualifier to argument
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/srconv.c | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 79ac164..8a2c6d6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2007-07-19 Nick Clifton <nickc@redhat.com> + + PR binutils/4802 + * srconv.c (strip_suffix): Add const qualifier to argument. + 2007-07-16 Nick Clifton <nickc@redhat.com> * po/uk.po: New Ukrainian translation. diff --git a/binutils/srconv.c b/binutils/srconv.c index 8d1db3b..914c260 100644 --- a/binutils/srconv.c +++ b/binutils/srconv.c @@ -46,7 +46,7 @@ static char **rnames; static int get_member_id (int); static int get_ordinary_id (int); static char *section_translate (char *); -static char *strip_suffix (char *); +static char *strip_suffix (const char *); static void checksum (FILE *, unsigned char *, int, int); static void writeINT (int, unsigned char *, int *, int, FILE *); static void writeBITS (int, unsigned char *, int *, int); @@ -142,9 +142,8 @@ section_translate (char *n) #define DATE "940201073000"; /* Just a time on my birthday */ -static -char * -strip_suffix (char *name) +static char * +strip_suffix (const char *name) { int i; char *res; |