From: Hartmut Holzgraefe Date: Fri, 26 Sep 2003 07:50:02 +0000 (+0000) Subject: error message was missing an argument X-Git-Tag: RELEASE_1_3b2~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3735d2f8bdaf2d2cb0231711a11891054390e6ec;p=php error message was missing an argument --- diff --git a/ext/yp/yp.c b/ext/yp/yp.c index 17ffb03766..b807bb908e 100644 --- a/ext/yp/yp.c +++ b/ext/yp/yp.c @@ -302,7 +302,7 @@ static int php_foreach_cat (int instatus, char *inkey, int inkeylen, char *inval add_assoc_stringl_ex((zval *) indata, key, inkeylen+1, inval, invallen, 1); efree(key); } else { - php_error(E_WARNING, "Can't allocate %d bytes for key buffer in yp_cat()"); + php_error(E_WARNING, "Can't allocate %d bytes for key buffer in yp_cat()"), inkeylen+1; } }