You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
681 B
23 lines
681 B
6 years ago
|
From dc662386dc22b049c311e49c859c05a15647c4fa Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
|
||
|
Date: Tue, 28 Jan 2014 16:41:08 -0300
|
||
|
Subject: [PATCH] skipcpio: return something at end of program
|
||
|
|
||
|
Otherwise the compiler emits a warning and the return vale is
|
||
|
in theory undefined.
|
||
|
---
|
||
|
skipcpio/skipcpio.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/skipcpio/skipcpio.c b/skipcpio/skipcpio.c
|
||
|
index fbf391bf..c9120617 100644
|
||
|
--- a/skipcpio/skipcpio.c
|
||
|
+++ b/skipcpio/skipcpio.c
|
||
|
@@ -120,4 +120,6 @@ int main(int argc, char **argv)
|
||
|
break;
|
||
|
}
|
||
|
fclose(f);
|
||
|
+
|
||
|
+ return EXIT_SUCCESS;
|
||
|
}
|