diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-10 21:32:15 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-10 21:32:15 -0800 |
commit | 933b5d1f1fe9273d1a984707687b36ec61c4c5af (patch) | |
tree | 55380b7ce47074746febfd95e16ebb93381c2b7e /src/data.c | |
parent | 696be14bcb4daef5280b425e297223c6ae530cb5 (diff) |
Fix gcc -Wwrite-strings warnings that don't require public API changes
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -61,7 +61,8 @@ ParseComment(xpmData *data) register char c; register unsigned int n = 0; unsigned int notend; - char *s, *s2; + char *s; + const char *s2; s = data->Comment; *s = data->Bcmt[0]; @@ -119,7 +120,8 @@ ParseComment(xpmData *data) register int c; register unsigned int n = 0, a; unsigned int notend; - char *s, *s2; + char *s; + const char *s2; s = data->Comment; *s = data->Bcmt[0]; |