From e52ee00dab8678b26a5b7312275daa6ac4899046 Mon Sep 17 00:00:00 2001 From: Ahmed Abouzied Date: Sat, 5 Jun 2021 19:49:38 +0200 Subject: Remove leading underscores from QEMU defines Leading underscores followed by a capital letter or underscore are reserved by the C standard. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/369 Signed-off-by: Ahmed Abouzied Message-Id: <20210605174938.13782-1-email@aabouzied.com> Signed-off-by: Thomas Huth --- include/qemu/plugin-memory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/qemu/plugin-memory.h') diff --git a/include/qemu/plugin-memory.h b/include/qemu/plugin-memory.h index fbbe99474b..b36def27d7 100644 --- a/include/qemu/plugin-memory.h +++ b/include/qemu/plugin-memory.h @@ -6,8 +6,8 @@ * SPDX-License-Identifier: GPL-2.0-or-later */ -#ifndef _PLUGIN_MEMORY_H_ -#define _PLUGIN_MEMORY_H_ +#ifndef PLUGIN_MEMORY_H +#define PLUGIN_MEMORY_H struct qemu_plugin_hwaddr { bool is_io; -- cgit 1.4.1