config-parser: add missing return for an error case

Fixes
config-parser.c: In function 'handle_key':
config-parser.c:81: error: control reaches end of non-void function

Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
This commit is contained in:
Pekka Paalanen 2012-03-30 13:54:53 +03:00
parent e4faa2ab05
commit 4ea4d1bb39

View file

@ -78,6 +78,8 @@ handle_key(const struct config_key *key, const char *value)
assert(0);
break;
}
return -1;
}
int