summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-13 18:37:36 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-13 18:37:36 +0200
commitb8d3418f7bc209427e27d76d3442987b6738cd1b (patch)
tree5932cada0e650e8193021ad6004914aff7e88761
parent70fcff314feff469a8e61dbe5017ed74f5e0a09d (diff)
execute: get rid of gcc warning
-rw-r--r--execute.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/execute.c b/execute.c
index 4e01e9ad69..5264b5009e 100644
--- a/execute.c
+++ b/execute.c
@@ -1357,7 +1357,11 @@ int exec_command_set(ExecCommand *c, const char *path, ...) {
}
const char* exit_status_to_string(ExitStatus status) {
- switch (status) {
+
+ /* We cast to int here, so that -Wenum doesn't complain that
+ * EXIT_SUCCESS/EXIT_FAILURE aren't in the enum */
+
+ switch ((int) status) {
case EXIT_SUCCESS:
return "SUCCESS";