From 8c1dc149575cfab4f3fdac91d9fd3c41be9d75bc Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 28 Nov 2012 18:15:33 +0000 Subject: generate the correct type name for boolean parameters to operations --- src/jsapi-libdom-operator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsapi-libdom-operator.c b/src/jsapi-libdom-operator.c index 9560019..f30bdb3 100644 --- a/src/jsapi-libdom-operator.c +++ b/src/jsapi-libdom-operator.c @@ -440,7 +440,7 @@ output_variable_definitions(struct binding *binding, case WEBIDL_TYPE_BOOL: /* JSBool */ fprintf(binding->outfile, - "\tjsBool %s = JS_FALSE;\n", + "\tJSBool %s = JS_FALSE;\n", webidl_node_gettext(arg_ident)); break; -- cgit v1.2.3