# HG changeset patch # User Paul Boddie # Date 1490489331 -3600 # Node ID 172f844275ab9ccc85f5cf2600fe1480c6d5a1b0 # Parent a41fbedd100af192b18c1143da09e70b0e12232c Adjusted the type for the conversion to integer of the size argument. diff -r a41fbedd100a -r 172f844275ab templates/native/tuple.c --- a/templates/native/tuple.c Sun Mar 26 01:48:17 2017 +0100 +++ b/templates/native/tuple.c Sun Mar 26 01:48:51 2017 +0100 @@ -32,7 +32,7 @@ __attr __fn_native_tuple_tuple_init(__attr __self, __attr size) { /* size interpreted as int */ - unsigned int n = __TOINT(size); + int n = __TOINT(size); /* Return the __data__ attribute. */ if (n) return (__attr) {.seqvalue=__new_fragment(n)};