mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
fix usage of incorrect string format argument
causing segfault
This commit is contained in:
parent
d8d5679c8e
commit
c40c49b331
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ fluid_settings_set(fluid_settings_t* settings, const char *name, fluid_setting_n
|
|||
table = node->set.hashtable;
|
||||
} else {
|
||||
/* path ends prematurely */
|
||||
FLUID_LOG(FLUID_WARN, "'%s' is not a node", name[n]);
|
||||
FLUID_LOG(FLUID_WARN, "'%s' is not a node. Name of the setting was '%s'", tokens[n], name);
|
||||
return FLUID_FAILED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue