fix usage of incorrect string format argument

causing segfault
This commit is contained in:
derselbst 2017-10-28 19:48:29 +02:00
parent d8d5679c8e
commit c40c49b331
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}