summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-08-05 20:18:02 -0300
committerGabriel Caruso <carusogabriel34@gmail.com>2018-08-05 20:18:02 -0300
commitdae65a89aa45dcf51da9a4aac37f8cf8b1211563 (patch)
tree63f7c0f4ba348b76693f48b3c52dd7f5b7f2374b
parentd570b7382d0a1c2c80ea7210daf8544eac08135d (diff)
downloadphp-git-dae65a89aa45dcf51da9a4aac37f8cf8b1211563.tar.gz
Remove unecessaries percent signs
-rw-r--r--ext/enchant/enchant.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/enchant/enchant.c b/ext/enchant/enchant.c
index 063b419bd3..6b778092f9 100644
--- a/ext/enchant/enchant.c
+++ b/ext/enchant/enchant.c
@@ -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; \
}