summaryrefslogtreecommitdiff
path: root/modules/gdnative
diff options
context:
space:
mode:
authorLeon Krause <lk@leonkrause.com>2018-02-10 17:19:16 +0100
committerLeon Krause <lk@leonkrause.com>2018-02-10 17:19:16 +0100
commit8e39cdd5d532f2ed7d82da971f0a28fa7862b923 (patch)
tree7cd0e7eead75d821eecddc3868cf4b4ce5299a4d /modules/gdnative
parente7cf2b2e77a097a026f883f003ad299b5d451885 (diff)
Fix GDNATIVE_API_INIT() warning about sign mismatch
Diffstat (limited to 'modules/gdnative')
-rw-r--r--modules/gdnative/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub
index c92c3f30a2..438c5f9a50 100644
--- a/modules/gdnative/SCsub
+++ b/modules/gdnative/SCsub
@@ -28,7 +28,7 @@ def _build_gdnative_api_struct_header(api):
'\textern const godot_gdnative_ext_{0}_api_struct *_gdnative_wrapper_{0}_api_struct;'.format(name))
gdnative_api_init_macro.append('\t_gdnative_wrapper_api_struct = options->api_struct;')
- gdnative_api_init_macro.append('\tfor (int i = 0; i < _gdnative_wrapper_api_struct->num_extensions; i++) { ')
+ gdnative_api_init_macro.append('\tfor (unsigned int i = 0; i < _gdnative_wrapper_api_struct->num_extensions; i++) { ')
gdnative_api_init_macro.append('\t\tswitch (_gdnative_wrapper_api_struct->extensions[i]->type) {')
for name in api['extensions']: