diff mbox series

plugin: foo * bar should be foo *bar

Message ID 75b8b38e-1898-b8d1-d3ad-f771e19fc725@huawei.com (mailing list archive)
State New, archived
Headers show
Series plugin: foo * bar should be foo *bar | expand

Commit Message

chaihaoyu Jan. 15, 2021, 6:36 a.m. UTC
recently I a code style problem while using checkpatch.pl tool,please review.
foo * bar should be foo *bar:

Signed-off-by: Haoyu Chai <chaihaoyu1@huawei.com>

---
 plugins/api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/plugins/api.c b/plugins/api.c
index bbdc5a4eb4..9661824b89 100644
--- a/plugins/api.c
+++ b/plugins/api.c
@@ -309,7 +309,7 @@  uint64_t qemu_plugin_hwaddr_device_offset(const struct qemu_plugin_hwaddr *haddr
  */

 #ifndef CONFIG_USER_ONLY
-static MachineState * get_ms(void)
+static MachineState *get_ms(void)
 {
     return MACHINE(qdev_get_machine());
 }