From ba860457c71270777ca00526e21f440a29701cf4 Mon Sep 17 00:00:00 2001 From: Cuda Chen Date: Tue, 3 Sep 2024 16:46:10 +0800 Subject: [PATCH] Enforce consistent SEMU_FEATURE_ prefix (#56) --- feature.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/feature.h b/feature.h index e17718a..1dee984 100644 --- a/feature.h +++ b/feature.h @@ -3,13 +3,13 @@ /* enable/disable (compile time) features in this header */ /* virtio-blk */ -#ifndef SEMU_FEATUREVIRTIOBLK -#define SEMU_FEATUREVIRTIOBLK 1 +#ifndef SEMU_FEATURE_VIRTIOBLK +#define SEMU_FEATURE_VIRTIOBLK 1 #endif /* virtio-net */ -#ifndef SEMU_FEATUREVIRTIONET -#define SEMU_FEATUREVIRTIONET 1 +#ifndef SEMU_FEATURE_VIRTIONET +#define SEMU_FEATURE_VIRTIONET 1 #endif /* Feature test macro */