1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

- Missing return

This commit is contained in:
Felipe Pena
2013-11-24 15:11:15 -02:00
parent 5b89e181aa
commit bb134a4059
+1
View File
@@ -75,6 +75,7 @@ void phpdbg_set_prompt_color(const char *color TSRMLS_DC) /* {{{ */
if (memcmp(color, *p, strlen(*p)+1) == 0) {
PHPDBG_G(prompt_color) = estrdup(*p);
phpdbg_set_prompt(PHPDBG_G(prompt_raw), *(p+1) TSRMLS_CC);
return;
}
} while (++p && *(++p));
} /* }}} */