summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-17 14:33:28 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-17 14:33:28 -0800
commitb3e5158fdeb90749fa710ac8e302aa69ddd81acd (patch)
tree245f8c1c1acb92b92b28ef13e555641a40caf1b5
parent4ce9806f4b5fd1d678e7451c11268460ef518df5 (diff)
downloadtxr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.tar.gz
txr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.tar.bz2
txr-b3e5158fdeb90749fa710ac8e302aa69ddd81acd.zip
Warning fixes.
-rw-r--r--ChangeLog13
-rw-r--r--hash.c1
-rw-r--r--match.c2
-rw-r--r--regex.c2
-rw-r--r--stream.c12
5 files changed, 25 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a2829d3..a74fa4e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
diff --git a/hash.c b/hash.c
index 0ce6aa68..e07f663a 100644
--- a/hash.c
+++ b/hash.c
@@ -189,6 +189,7 @@ static struct cobj_ops hash_ops = {
cobj_print_op,
hash_destroy,
hash_mark,
+ 0
};
void hash_grow(struct hash *h)
diff --git a/match.c b/match.c
index a205e126..6fef885e 100644
--- a/match.c
+++ b/match.c
@@ -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));
diff --git a/regex.c b/regex.c
index 787e23b8..64ec2f00 100644
--- a/regex.c
+++ b/regex.c
@@ -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)
diff --git a/stream.c b/stream.c
index 1546ff50..bad67d84 100644
--- a/stream.c
+++ b/stream.c
@@ -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,