changeset 1214:1133dffe3713

s/%i/%d/g.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Mar 2015 23:13:13 +0200
parents 505317227ab4
children 66c79bae8704
files minijss/jloadjss.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/minijss/jloadjss.c	Thu Mar 05 23:12:37 2015 +0200
+++ b/minijss/jloadjss.c	Thu Mar 05 23:13:13 2015 +0200
@@ -432,7 +432,7 @@
         if ((einst = jssAllocateExtInstrument()) == NULL)
         {
             JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
-            "Could not allocate extended instrument structure #%i\n", index);
+            "Could not allocate extended instrument structure #%d\n", index);
         }
 
         module->extInstruments[index] = einst;
@@ -467,7 +467,7 @@
         if ((inst = jssAllocateInstrument()) == NULL)
         {
             JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
-            "Could not allocate instrument structure #%i\n", index);
+            "Could not allocate sample instrument structure #%d\n", index);
         }
 
         module->instruments[index] = inst;