mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
Remove unecessaries percent signs
This commit is contained in:
parent
d570b7382d
commit
dae65a89aa
@ -332,14 +332,14 @@ PHP_MINFO_FUNCTION(enchant)
|
||||
#define PHP_ENCHANT_GET_BROKER \
|
||||
pbroker = (enchant_broker *)zend_fetch_resource(Z_RES_P(broker), "enchant_broker", le_enchant_broker); \
|
||||
if (!pbroker || !pbroker->pbroker) { \
|
||||
php_error_docref(NULL, E_WARNING, "%s", "Resource broker invalid"); \
|
||||
php_error_docref(NULL, E_WARNING, "Resource broker invalid"); \
|
||||
RETURN_FALSE; \
|
||||
}
|
||||
|
||||
#define PHP_ENCHANT_GET_DICT \
|
||||
pdict = (enchant_dict *)zend_fetch_resource(Z_RES_P(dict), "enchant_dict", le_enchant_dict); \
|
||||
if (!pdict || !pdict->pdict) { \
|
||||
php_error_docref(NULL, E_WARNING, "%s", "Invalid dictionary resource."); \
|
||||
php_error_docref(NULL, E_WARNING, "Invalid dictionary resource."); \
|
||||
RETURN_FALSE; \
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user