Skip to content

Commit 8661ef9

Browse files
committed
core-cpu-cache: replace " with ' in error message
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
1 parent 95a2382 commit 8661ef9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core-cpu-cache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ static uint64_t stress_cpu_cache_size_to_bytes(const char *str)
850850

851851
ret = sscanf(str, "%" SCNu64 "%c", &bytes, &sz);
852852
if (ret != 2) {
853-
pr_dbg("%s: failed to parse suffix from \"%s\"\n",
853+
pr_dbg("%s: failed to parse suffix from '%s'\n",
854854
__func__, str);
855855
return 0;
856856
}

0 commit comments

Comments
 (0)