summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-01 09:25:42 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-01 09:25:42 -0800
commit08cebd08c7645737d44de8a801af7c2df7874571 (patch)
tree78969e3fda526f41a4b846652fccd30b53e14b48 /stream.c
parent04ed380c4a389c0c21eae8e3cd35e7e44506a2e3 (diff)
downloadtxr-08cebd08c7645737d44de8a801af7c2df7874571.tar.gz
txr-08cebd08c7645737d44de8a801af7c2df7874571.tar.bz2
txr-08cebd08c7645737d44de8a801af7c2df7874571.zip
Bug ID 27895: Calls to protect have an argument list terminated
by the integer constant 0 rather than a proper null pointer constant.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 6379649e..01ef8ad0 100644
--- a/stream.c
+++ b/stream.c
@@ -634,7 +634,7 @@ obj_t *put_line(obj_t *stream, obj_t *string)
void stream_init(void)
{
- protect(&std_input, &std_output, &std_error, 0);
+ protect(&std_input, &std_output, &std_error, (obj_t **) 0);
std_input = make_stdio_stream(stdin, t, nil);
std_output = make_stdio_stream(stdout, nil, t);
std_error = make_stdio_stream(stderr, nil, t);