diff options
author | Christian Pointner <equinox@helsinki.at> | 2011-04-16 13:54:15 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2011-04-16 13:54:15 (GMT) |
commit | 96a2079927425894772dea9236420bf440064959 (patch) | |
tree | 5e7d556210eee6ab53839b82b4645b6c9bdbd51c | |
parent | 1203b5f7c95b5a90d4d8c04121e4ea65f713e946 (diff) |
fixed missing return @ open_file
-rw-r--r-- | src/writer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/writer.c b/src/writer.c index d4a36ab..fb99c96 100644 --- a/src/writer.c +++ b/src/writer.c @@ -150,6 +150,8 @@ static int open_file(file_t* file) if(orig_path != file->path_) free(orig_path); + + return 0; } static gpointer writer_thread_func(gpointer data) |