summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hambley <lists@aether.demon.co.uk>2004-05-20 20:10:42 +0000
committerMatthew Hambley <lists@aether.demon.co.uk>2004-05-20 20:10:42 +0000
commit67faa034480f701ccc9111930a799ddc16c51fdc (patch)
tree37f7de5b6a23862b482df6ef216850d12a5afab1
parent6838b11f6c3c89940336833e903ef376010acc32 (diff)
downloadnetsurf-67faa034480f701ccc9111930a799ddc16c51fdc.tar.gz
netsurf-67faa034480f701ccc9111930a799ddc16c51fdc.tar.bz2
[project @ 2004-05-20 20:10:42 by matthewh]
A stub function which should have returned a value wasn't. svn path=/import/netsurf/; revision=871
-rw-r--r--debug/netsurfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/netsurfd.c b/debug/netsurfd.c
index 70e3f8784..72a8d7a1c 100644
--- a/debug/netsurfd.c
+++ b/debug/netsurfd.c
@@ -152,7 +152,7 @@ bool plugin_handleable(const char *mime_type)
void plugin_msg_parse(wimp_message *message, int ack) {}
void plugin_create(struct content *c, const char *params[]) {}
void plugin_process_data(struct content *c, char *data, unsigned long size) {}
-int plugin_convert(struct content *c, unsigned int width, unsigned int height) {}
+int plugin_convert(struct content *c, unsigned int width, unsigned int height) {return 0;}
void plugin_revive(struct content *c, unsigned int width, unsigned int height) {}
void plugin_reformat(struct content *c, unsigned int width, unsigned int height) {}
void plugin_destroy(struct content *c) {}