summaryrefslogtreecommitdiff
path: root/ext/standard/datetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/datetime.c')
-rw-r--r--ext/standard/datetime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c
index b00937393c..3626d29e21 100644
--- a/ext/standard/datetime.c
+++ b/ext/standard/datetime.c
@@ -686,7 +686,7 @@ PHP_FUNCTION(strftime)
#if HAVE_STRFTIME
_php_strftime(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
#else
- PHP_NOT_IN_THIS_BUILD;
+ PHP_NOT_IN_THIS_BUILD();
#endif
}
/* }}} */
@@ -698,7 +698,7 @@ PHP_FUNCTION(gmstrftime)
#if HAVE_STRFTIME
_php_strftime(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
#else
- PHP_NOT_IN_THIS_BUILD;
+ PHP_NOT_IN_THIS_BUILD();
#endif
}
/* }}} */