From: Nick Bowler Date: Fri, 1 Apr 2011 00:37:37 +0000 (-0400) Subject: upkg: Fix missing return statement. X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/commitdiff_plain/8121d4abc912b7a7029c232b6ec0bcfd785fa82a upkg: Fix missing return statement. --- diff --git a/src/upkg.c b/src/upkg.c index 7c90533..6b48f72 100644 --- a/src/upkg.c +++ b/src/upkg.c @@ -262,6 +262,8 @@ static int package_list(GTypeModule *pkg, long parent) putchar('\n'); } + + return 0; } static int object_info(GTypeModule *pkg, unsigned long idx)