We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0be34 commit f97c39fCopy full SHA for f97c39f
1 file changed
sapi/phpdbg/phpdbg_prompt.c
@@ -1346,7 +1346,7 @@ PHPDBG_COMMAND(dl) /* {{{ */
1346
phpdbg_notice("Modules");
1347
zend_hash_apply(&module_registry, (apply_func_t) add_module_info);
1348
} else switch (param->type) {
1349
- case STR_PARAM:
+ case STR_PARAM: {
1350
#ifdef HAVE_LIBDL
1351
zend_string *path = zend_string_init(param->str, param->len, false);
1352
@@ -1363,6 +1363,7 @@ PHPDBG_COMMAND(dl) /* {{{ */
1363
phpdbg_error("Cannot dynamically load %.*s - dynamic modules are not supported", (int) param->len, param->str);
1364
#endif
1365
break;
1366
+ }
1367
1368
phpdbg_default_switch_case();
1369
}
0 commit comments