- fix switch() CS
[m6w6/ext-http] / http_querystring_object.c
index 7db43decc0784f98142f245c18367f14723a9e09..d0eed53d14942490d5f43db6a464055b8930518b 100644 (file)
@@ -327,8 +327,7 @@ PHP_METHOD(HttpQueryString, get)
                                if (Z_TYPE_P(ztype) == IS_LONG) {
                                        type = Z_LVAL_P(ztype);
                                } else if(Z_TYPE_P(ztype) == IS_STRING) {
-                                       switch (Z_STRVAL_P(ztype)[0])
-                                       {
+                                       switch (Z_STRVAL_P(ztype)[0]) {
                                                case 'B': 
                                                case 'b':       type = HTTP_QUERYSTRING_TYPE_BOOL;              break;
                                                case 'I':