diff options
-rwxr-xr-x | ext/skeleton/create_stubs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/skeleton/create_stubs b/ext/skeleton/create_stubs index 2bad4d14a4..43939ed736 100755 --- a/ext/skeleton/create_stubs +++ b/ext/skeleton/create_stubs @@ -20,7 +20,7 @@ function convert(i, j, t) if (type == "int" || type == "long") { longs = longs "\tlong " name ";\n" - } else if (type == "bool" || (type == "boolean") { + } else if (type == "bool" || type == "boolean") { bools = bools "\tzend_bool " name ";\n" } else if (type == "double" || type == "float") { doubles = doubles "\tdouble " name ";\n" |