diff options
Diffstat (limited to 'libgpython/runtime/obj-integer.c')
| -rw-r--r-- | libgpython/runtime/obj-integer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgpython/runtime/obj-integer.c b/libgpython/runtime/obj-integer.c index 71943325a8c..e19a691b354 100644 --- a/libgpython/runtime/obj-integer.c +++ b/libgpython/runtime/obj-integer.c @@ -51,7 +51,7 @@ gpy_object_t * gpy_obj_integer_init (gpy_typedef_t * type, gpy_object_t * retval = NULL_OBJECT; bool check = gpy_args_check_fmt (args, "i"); - gpy_assert(check); + gpy_assert (check); int val = gpy_args_lit_parse_int (args[0]); struct gpy_obj_integer_t * self = (struct gpy_obj_integer_t *) |
