sim: dv-cfi: fix printf format
authorMike Frysinger <vapier@gentoo.org>
Sat, 24 Apr 2021 04:16:08 +0000 (00:16 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sat, 24 Apr 2021 04:18:48 +0000 (00:18 -0400)
Use the existing PRI constants to select the right format rather than
assume signed_cell is always %u.  Fixes building for riscv64.

sim/common/ChangeLog
sim/common/dv-cfi.c

index ed4d9f7da65b7c69fdbee361165708609030a996..516e214f0112ae2dc8a02b45a44b75b15a05407e 100644 (file)
@@ -1,3 +1,7 @@
+2021-04-24  Mike Frysinger  <vapier@gentoo.org>
+
+       * dv-cfi.c (attach_cfi_regs): Change %u to PRIiTC.
+
 2021-04-24  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-options.c (ARG_HASH_SIZE): Increase to 256.
index afc020a9f4b8b0e0849abc600fde2a0c85259500..b8652271752dfd9c26e489dd947c947b73dbbe0d 100644 (file)
@@ -610,7 +610,7 @@ attach_cfi_regs (struct hw *me, struct cfi *cfi)
     if (cfi_cmdsets[i]->id == ival)
       cfi->cmdset = cfi_cmdsets[i];
   if (cfi->cmdset == NULL)
-    hw_abort (me, "cmdset %u not supported", ival);
+    hw_abort (me, "cmdset %" PRIiTC " not supported", ival);
 
   if (ret == 2)
     {