diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-17 14:33:28 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-17 14:33:28 -0800 |
commit | b3e5158fdeb90749fa710ac8e302aa69ddd81acd (patch) | |
tree | 245f8c1c1acb92b92b28ef13e555641a40caf1b5 | |
parent | 4ce9806f4b5fd1d678e7451c11268460ef518df5 (diff) | |
download | txr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.tar.gz txr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.tar.bz2 txr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.zip |
Warning fixes.
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | hash.c | 1 | ||||
-rw-r--r-- | match.c | 2 | ||||
-rw-r--r-- | regex.c | 2 | ||||
-rw-r--r-- | stream.c | 12 |
5 files changed, 25 insertions, 5 deletions
@@ -1,5 +1,18 @@ 2009-11-17 Kaz Kylheku <kkylheku@gmail.com> + Warning fixes. + + * hash.c (hash_ops): Add missing initializer. + + * match.c (complex_open): Add missing intializer to ret variable. + + * regex.c (regex_obj_ops): Add missing initializer. + + * stream.c (stdio_ops, pipe_ops, string_in_ops, byte_in_ops, + string_out_ops, dir_ops): Likewise. + +2009-11-17 Kaz Kylheku <kkylheku@gmail.com> + * lib.c (chrp): Fix broken is_chr(num) call. 2009-11-17 Kaz Kylheku <kkylheku@gmail.com> @@ -189,6 +189,7 @@ static struct cobj_ops hash_ops = { cobj_print_op, hash_destroy, hash_mark, + 0 }; void hash_grow(struct hash *h) @@ -617,7 +617,7 @@ typedef struct fpip { fpip_t complex_open(obj_t *name, obj_t *output) { - fpip_t ret = { 0 }; + fpip_t ret = { 0, 0 }; const wchar_t *namestr = c_str(name); long len = c_num(length_str(name)); @@ -1049,7 +1049,7 @@ static void regex_destroy(obj_t *regex) } static struct cobj_ops regex_obj_ops = { - regex_equal, cobj_print_op, regex_destroy, 0, + regex_equal, cobj_print_op, regex_destroy, 0, 0 }; obj_t *regex_compile(obj_t *regex_sexp) @@ -216,7 +216,8 @@ static struct strm_ops stdio_ops = { { common_equal, stdio_stream_print, stdio_stream_destroy, - stdio_stream_mark }, + stdio_stream_mark, + 0 }, stdio_put_string, stdio_put_char, stdio_get_line, @@ -271,7 +272,8 @@ static struct strm_ops pipe_ops = { { common_equal, stdio_stream_print, stdio_stream_destroy, - stdio_stream_mark }, + stdio_stream_mark, + 0 }, stdio_put_string, stdio_put_char, stdio_get_line, @@ -320,7 +322,8 @@ static struct strm_ops string_in_ops = { { common_equal, cobj_print_op, 0, - string_in_stream_mark }, + string_in_stream_mark, + 0 }, 0, 0, string_in_get_line, @@ -348,6 +351,7 @@ static struct strm_ops byte_in_ops = { { common_equal, cobj_print_op, 0, + 0, 0 }, 0, 0, @@ -417,6 +421,7 @@ static struct strm_ops string_out_ops = { { common_equal, cobj_print_op, string_out_stream_destroy, + 0, 0 }, string_out_put_string, string_out_put_char, @@ -459,6 +464,7 @@ static struct strm_ops dir_ops = { { common_equal, cobj_print_op, common_destroy, + 0, 0 }, 0, 0, |