# HG changeset patch # User Matti Hamalainen # Date 1425589993 -7200 # Node ID 1133dffe3713701e3fcd66ccc2ffce57b1eff329 # Parent 505317227ab48bb1931c2714b31e32d7524da39c s/%i/%d/g. diff -r 505317227ab4 -r 1133dffe3713 minijss/jloadjss.c --- 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;