tests: benchmark: fix a string format issue

A popular issue "format is not a string literally" was
caught by LLVM. Let's make it a string literally.

Jira: ZEP-1179

Change-Id: I2b4a5aef750b772504bf0e6f005dab2ff9ac3e7c
Signed-off-by: Baohong Liu <baohong.liu@intel.com>
This commit is contained in:
Baohong Liu 2016-11-16 14:45:30 -08:00 committed by Anas Nashif
parent 41004171d3
commit df08319473
1 changed files with 2 additions and 2 deletions

View File

@ -114,9 +114,9 @@ static void fiberEntry(int message, int arg1)
ARG_UNUSED(arg1);
#ifdef TEST_max
printf((char *)message);
printf("%s", (char *)message);
#else
printk((char *)message);
printk("%s", (char *)message);
#endif /* TEST_max */
}