diff options
author | Sebastian Bergmann <sebastian@php.net> | 2003-12-16 06:29:01 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2003-12-16 06:29:01 +0000 |
commit | aaeb8f4394d4d5d8b8ce4fd76f73e7ec5ff27a51 (patch) | |
tree | 63454666c1eedc5539f38cf2c673c389ae1d3590 | |
parent | e353289cfc00e7cc946d2dc1c4cd9c0a16240c22 (diff) | |
download | php-git-aaeb8f4394d4d5d8b8ce4fd76f73e7ec5ff27a51.tar.gz |
Fix ZTS build.
-rw-r--r-- | ext/gd/libgd/gdft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gdft.c b/ext/gd/libgd/gdft.c index e75ec697ce..c33a071619 100644 --- a/ext/gd/libgd/gdft.c +++ b/ext/gd/libgd/gdft.c @@ -349,7 +349,7 @@ fontTest (void *element, void *key) return (strcmp (a->fontlist, b->fontlist) == 0); } -static void *fontFetch (char **error, void *key) +static void *fontFetch (char **error, void *key TSRMLS_DC) { font_t *a; fontkey_t *b = (fontkey_t *) key; |