diff options
author | Ahmed Abouzied | 2021-06-05 19:49:38 +0200 |
---|---|---|
committer | Thomas Huth | 2021-06-21 05:49:01 +0200 |
commit | e52ee00dab8678b26a5b7312275daa6ac4899046 (patch) | |
tree | 95402eb9c1df3b727c593fd71f5cb779fe624798 /tests | |
parent | Update documentation to refer to new location for issues (diff) | |
download | qemu-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 'tests')
-rw-r--r-- | tests/qtest/fuzz/qos_fuzz.h | 4 | ||||
-rw-r--r-- | tests/tcg/minilib/minilib.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/qtest/fuzz/qos_fuzz.h b/tests/qtest/fuzz/qos_fuzz.h index 477f11b02b..63d8459b71 100644 --- a/tests/qtest/fuzz/qos_fuzz.h +++ b/tests/qtest/fuzz/qos_fuzz.h @@ -10,8 +10,8 @@ * See the COPYING file in the top-level directory. */ -#ifndef _QOS_FUZZ_H_ -#define _QOS_FUZZ_H_ +#ifndef QOS_FUZZ_H +#define QOS_FUZZ_H #include "tests/qtest/fuzz/fuzz.h" #include "tests/qtest/libqos/qgraph.h" diff --git a/tests/tcg/minilib/minilib.h b/tests/tcg/minilib/minilib.h index e23361380a..17d0f2f314 100644 --- a/tests/tcg/minilib/minilib.h +++ b/tests/tcg/minilib/minilib.h @@ -9,8 +9,8 @@ * SPDX-License-Identifier: GPL-2.0-only */ -#ifndef _MINILIB_H_ -#define _MINILIB_H_ +#ifndef MINILIB_H +#define MINILIB_H /* * Provided by the individual arch |