From 952fe6f26c23383fa23e24bc7674339250aedb60 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 28 Oct 2011 12:22:28 +0200 Subject: [PATCH] Added missing format specifier to parseparameters. --- twig.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/twig.c b/twig.c index 7e1f990..8084dac 100644 --- a/twig.c +++ b/twig.c @@ -703,7 +703,7 @@ PHP_FUNCTION(twig_template_get_attributes) zend_bool ignoreStrictCheck = 0; int free_ret = 0; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ozzasb", &template, &object, &item, &arguments, &type, &type_len, &isDefinedTest, &ignoreStrictCheck) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ozzasbb", &template, &object, &item, &arguments, &type, &type_len, &isDefinedTest, &ignoreStrictCheck) == FAILURE) { return; } -- 1.7.2.5