summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2013-12-01 14:57:11 -0200
committerFelipe Pena <felipensp@gmail.com>2013-12-01 14:57:11 -0200
commit9ca817eb0ffef5b87717ddda83648695e66e0998 (patch)
tree5dc942b8289f56dd2ab74047d49f4cc9ab2b1d71
parentf6efce9f137a94a76cbf271aefcf530584e4e10d (diff)
downloadphp-git-9ca817eb0ffef5b87717ddda83648695e66e0998.tar.gz
- Fixed compiler warning
-rw-r--r--phpdbg_set.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/phpdbg_set.c b/phpdbg_set.c
index be8624ef97..10c73aff00 100644
--- a/phpdbg_set.c
+++ b/phpdbg_set.c
@@ -127,11 +127,12 @@ PHPDBG_SET(colors) /* {{{ */
goto done;
}
}
+
+ default:
+ phpdbg_error(
+ "set colors used incorrectly: set colors <on|off>");
}
-usage:
- phpdbg_error(
- "set colors used incorrectly: set colors <on|off>");
done:
return SUCCESS;