This patch fixes error messages found by checkpatch.pl: "foo* bar" should be "foo *bar"
Signed-off-by: Haoyu Chai <chaihao...@huawei.com> --- softmmu/globals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softmmu/globals.c b/softmmu/globals.c index 7d0fc81183..341a7029ff 100644 --- a/softmmu/globals.c +++ b/softmmu/globals.c @@ -35,7 +35,7 @@ enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB; int display_opengl; -const char* keyboard_layout; +const char *keyboard_layout; bool enable_mlock; bool enable_cpu_pm; int nb_nics; -- 2.29.1.59.gf9b6481aed