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