mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove unecessaries percent signs
This commit is contained in:
parent
d570b7382d
commit
dae65a89aa
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue