diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-09-09 20:05:27 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-09-09 20:05:27 -0700 |
commit | 9f0f4a2c5495eec2d81a4381fb962fad93b2ddde (patch) | |
tree | 7608fb1bc62b2df1c8bcb4f549a35607a37e905b /lisp/stream.c | |
parent | 40615f52b8fe7478599ce4948ccc751aa0a34397 (diff) |
Copious const cleanup
Removes 1554 gcc warnings of "discards ‘const’ qualifier"
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'lisp/stream.c')
-rw-r--r-- | lisp/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/stream.c b/lisp/stream.c index aad89cf..98d6d3e 100644 --- a/lisp/stream.c +++ b/lisp/stream.c @@ -613,7 +613,7 @@ Lisp_GetOutputStreamString(LispBuiltin *builtin) */ { int length; - char *string; + const char *string; LispObj *string_output_stream, *result; string_output_stream = ARGUMENT(0); |