diff options
author | Rasmus Lerdorf <rasmus@lerdorf.com> | 2015-01-20 23:56:51 -0800 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@lerdorf.com> | 2015-01-20 23:56:51 -0800 |
commit | 41013ba5976446f59bc192fb2c047454550c04c3 (patch) | |
tree | af030773bf8d23e8af7c622fa7cc30f8f8c82a42 /README.EXT_SKEL | |
parent | f9664ce8536d5acb510184adf39b20327ddccb55 (diff) | |
download | php-git-41013ba5976446f59bc192fb2c047454550c04c3.tar.gz |
Fix the most obvious issues here.
There are other problems though
Diffstat (limited to 'README.EXT_SKEL')
-rw-r--r-- | README.EXT_SKEL | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/README.EXT_SKEL b/README.EXT_SKEL index 42df006d24..fdf7ad0e90 100644 --- a/README.EXT_SKEL +++ b/README.EXT_SKEL @@ -164,11 +164,11 @@ PHP_FUNCTION(module_name_drawtext) char *text = NULL; int argc = ZEND_NUM_ARGS(); int image_id = -1; - int text_len; + size_t text_len; int font_id = -1; - long x; - long y; - long color; + zend_long x; + zend_long y; + zend_long color; zval *image = NULL; zval *font = NULL; |