]> Nishi Git Mirror - gwion.git/commitdiff
:art: Use UINT_F
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 12:29:56 +0000 (14:29 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 12:29:56 +0000 (14:29 +0200)
src/parse/check.c

index ca8d29f0b133141d2f0b75c32ec61cc53e8e46b7..2e5b6d4543176a0638e4b81a1aaa0d5a07141590 100644 (file)
@@ -404,7 +404,7 @@ ANN static Type tuple_depth(const Env env, const Array_Sub array) {
 ANN static Type partial_depth(const Env env, const Array_Sub array) {
   const Exp curr = take_exp(array->exp, array->type->array_depth);
   if(!curr->next || !array_base(array->type))
-    ERR_O(array->exp->pos, _("array subscripts (%i) exceeds defined dimension (%i)"),
+    ERR_O(array->exp->pos, _("array subscripts (%"UINT_F") exceeds defined dimension (%"UINT_F")"),
         array->depth, get_depth(array->type))
   struct Array_Sub_ next = { curr->next, array_base(array->type), array->depth - array->type->array_depth };
   return at_depth(env, &next);