From 8121d4abc912b7a7029c232b6ec0bcfd785fa82a Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Thu, 31 Mar 2011 20:37:37 -0400 Subject: [PATCH] upkg: Fix missing return statement. --- src/upkg.c | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.43.0