From 3c314e266ae8c18c29602be1dd49c1333f40e986 Mon Sep 17 00:00:00 2001 From: dzaima Date: Mon, 30 May 2022 02:12:53 +0300 Subject: [PATCH] correct format string --- src/builtins/md2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/md2.c b/src/builtins/md2.c index efb9e7db..71edc10f 100644 --- a/src/builtins/md2.c +++ b/src/builtins/md2.c @@ -350,7 +350,7 @@ B rank_c2(Md2D* d, B w, B x) { B f = d->f; B g = d->g; usz cam = 1; for (usz i = 0; i < k; i++) { usz wl = wsh[i], xl = xsh[i]; - if (wl != xl) thrF("⎉: Argument frames don't agree (%H ≡ ≢𝕨, %H ≡ ≢𝕩, common frame of %s axes)", w, x, k); + if (wl != xl) thrF("⎉: Argument frames don't agree (%H ≡ ≢𝕨, %H ≡ ≢𝕩, common frame of %i axes)", w, x, k); cam*= wsh[i]; } usz ext = shProd(zsh, k, zk);