Skip to content

Commit 41013ba

Browse files
committed
Fix the most obvious issues here.
There are other problems though
1 parent f9664ce commit 41013ba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.EXT_SKEL

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@ PHP_FUNCTION(module_name_drawtext)
164164
char *text = NULL;
165165
int argc = ZEND_NUM_ARGS();
166166
int image_id = -1;
167-
int text_len;
167+
size_t text_len;
168168
int font_id = -1;
169-
long x;
170-
long y;
171-
long color;
169+
zend_long x;
170+
zend_long y;
171+
zend_long color;
172172
zval *image = NULL;
173173
zval *font = NULL;
174174

ext/skeleton/create_stubs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ function convert(i, j, t)
1919
for (i = 0; i < t; i++) { tabs = tabs "\t" }
2020

2121
if (type == "int" || type == "long") {
22-
longs = longs "\tlong " name ";\n"
22+
longs = longs "\tzend_long " name ";\n"
2323
} else if (type == "bool" || type == "boolean") {
2424
bools = bools "\tzend_bool " name ";\n"
2525
} else if (type == "double" || type == "float") {
2626
doubles = doubles "\tdouble " name ";\n"
2727
} else if (type == "string") {
2828
strings = strings "\tchar *" name " = NULL;\n"
29-
ints = ints "\tint " name "_len;\n"
29+
ints = ints "\tsize_t " name "_len;\n"
3030
} else if (type == "array" || type == "object" || type == "mixed") {
3131
zvals = zvals "\tzval *" name " = NULL;\n"
3232
} else if (type == "resource" || type == "handle") {

0 commit comments

Comments
 (0)