From 62d4fa9306fdb5dd0a1b592fd8dbdf1b679d92ca Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 30 Oct 2008 08:38:54 +0100 Subject: decoder: use bool for return values and flags Don't return 0/-1 on success/error, but true/false. Instead of int, use bool for storing flags. --- src/decoder_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder_list.c') diff --git a/src/decoder_list.c b/src/decoder_list.c index 252418154..57a013ec9 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -41,7 +41,7 @@ void decoder_plugin_load(struct decoder_plugin * inputPlugin) if (!inputPlugin->name) return; - if (inputPlugin->init != NULL && inputPlugin->init() < 0) + if (inputPlugin->init != NULL && !inputPlugin->init()) return; insertInList(inputPlugin_list, inputPlugin->name, (void *)inputPlugin); -- cgit v1.2.3