diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-12-01 14:57:11 -0200 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2013-12-01 14:57:11 -0200 |
commit | 9ca817eb0ffef5b87717ddda83648695e66e0998 (patch) | |
tree | 5dc942b8289f56dd2ab74047d49f4cc9ab2b1d71 /phpdbg_set.c | |
parent | f6efce9f137a94a76cbf271aefcf530584e4e10d (diff) | |
download | php-git-9ca817eb0ffef5b87717ddda83648695e66e0998.tar.gz |
- Fixed compiler warning
Diffstat (limited to 'phpdbg_set.c')
-rw-r--r-- | phpdbg_set.c | 7 |
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; |