summaryrefslogtreecommitdiff
path: root/src/jsapi-libdom-operator.c
diff options
context:
space:
mode:
authorVincent Sanders <vincent.sanders@collabora.co.uk>2012-11-28 18:15:33 +0000
committerVincent Sanders <vincent.sanders@collabora.co.uk>2012-11-28 18:15:33 +0000
commit8c1dc149575cfab4f3fdac91d9fd3c41be9d75bc (patch)
treedbd7888c18d8b79fc8eae61a99956feb89ff3e65 /src/jsapi-libdom-operator.c
parente0e92e4a68a87ebba0583f2a26514f619cc08a30 (diff)
downloadnsgenbind-8c1dc149575cfab4f3fdac91d9fd3c41be9d75bc.tar.gz
nsgenbind-8c1dc149575cfab4f3fdac91d9fd3c41be9d75bc.tar.bz2
generate the correct type name for boolean parameters to operations
Diffstat (limited to 'src/jsapi-libdom-operator.c')
-rw-r--r--src/jsapi-libdom-operator.c2
1 files changed, 1 insertions, 1 deletions
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;