summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAhmed Abouzied2021-06-05 19:49:38 +0200
committerThomas Huth2021-06-21 05:49:01 +0200
commite52ee00dab8678b26a5b7312275daa6ac4899046 (patch)
tree95402eb9c1df3b727c593fd71f5cb779fe624798 /plugins
parentUpdate documentation to refer to new location for issues (diff)
downloadqemu-e52ee00dab8678b26a5b7312275daa6ac4899046.tar.gz
qemu-e52ee00dab8678b26a5b7312275daa6ac4899046.tar.xz
qemu-e52ee00dab8678b26a5b7312275daa6ac4899046.zip
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 <email@aabouzied.com> Message-Id: <20210605174938.13782-1-email@aabouzied.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/plugin.h b/plugins/plugin.h
index 55017e3581..b13677d0dc 100644
--- a/plugins/plugin.h
+++ b/plugins/plugin.h
@@ -9,8 +9,8 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
-#ifndef _PLUGIN_INTERNAL_H_
-#define _PLUGIN_INTERNAL_H_
+#ifndef PLUGIN_INTERNAL_H
+#define PLUGIN_INTERNAL_H
#include <gmodule.h>
#include "qemu/qht.h"