diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2015-07-19 12:08:15 +0200 |
---|---|---|
committer | Thomas Klausner <wiz@NetBSD.org> | 2015-07-19 23:02:32 +0200 |
commit | c8eb3414f68cdc1b02a64c5321d4b0abe9c70d1e (patch) | |
tree | ad4f647ebf45a68c2b1dcff4c707f9f6c6331d51 | |
parent | 920b070987c00b369bd6c77c6283f68dffbc7b83 (diff) |
Make NameFromFormat() const.
Fixes a const-discard warning.
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | x11perf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -167,7 +167,7 @@ static int GetRops(int argi, int argc, char **argv, int *ropsp, int *nump); static int GetPops(int argi, int argc, char **argv, int *popsp, int *nump); static int GetFormats(int argi, int argc, char **argv, int *formatsp, int *nump); static int FormatFromName (char *name); -static char *NameFromFormat (int format); +static const char *NameFromFormat (int format); /************************************************ @@ -1399,7 +1399,7 @@ main(int argc, char *argv[]) LABELP(i)); } } else { - char *name = NameFromFormat (formats[format]); + const char *name = NameFromFormat (formats[format]); sprintf (label, "(%s %s) %s", popNames[pops[pop]].name, name, @@ -1560,7 +1560,7 @@ FormatFromName (char *name) return -1; } -static char * +static const char * NameFromFormat (int format) { int i; |