Fix debug message formatting

This commit is contained in:
Lucas De Marchi 2011-12-19 14:36:23 -02:00
parent f841e63d7a
commit e5a7f6ac79

View File

@ -114,7 +114,7 @@ static int kmod_config_add_command(struct kmod_config *config,
size_t modnamelen = strlen(modname) + 1;
size_t commandlen = strlen(command) + 1;
DBG(config->ctx, "modname'%s' cmd='%s %s'\n", modname, command_name,
DBG(config->ctx, "modname='%s' cmd='%s %s'\n", modname, command_name,
command);
cmd = malloc(sizeof(*cmd) + modnamelen + commandlen);