Blame SOURCES/0116-skipcpio-return-something-at-end-of-program.patch

712866
From dc662386dc22b049c311e49c859c05a15647c4fa Mon Sep 17 00:00:00 2001
712866
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
712866
Date: Tue, 28 Jan 2014 16:41:08 -0300
712866
Subject: [PATCH] skipcpio: return something at end of program
712866
712866
Otherwise the compiler emits a warning and the return vale is
712866
in theory undefined.
712866
---
712866
 skipcpio/skipcpio.c | 2 ++
712866
 1 file changed, 2 insertions(+)
712866
712866
diff --git a/skipcpio/skipcpio.c b/skipcpio/skipcpio.c
5c6c2a
index fbf391bf..c9120617 100644
712866
--- a/skipcpio/skipcpio.c
712866
+++ b/skipcpio/skipcpio.c
712866
@@ -120,4 +120,6 @@ int main(int argc, char **argv)
712866
                         break;
712866
         }
712866
         fclose(f);
712866
+
712866
+        return EXIT_SUCCESS;
712866
 }