From 6f31af06123fb26256b3dae6484c9baa30940f51 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 27 Feb 2023 13:35:45 +0100 Subject: [PATCH] Remove ovni prefix from pcf.h guards --- src/emu/pv/pcf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/pv/pcf.h b/src/emu/pv/pcf.h index c35c171..4a3a7df 100644 --- a/src/emu/pv/pcf.h +++ b/src/emu/pv/pcf.h @@ -1,8 +1,8 @@ /* Copyright (c) 2021 Barcelona Supercomputing Center (BSC) * SPDX-License-Identifier: GPL-3.0-or-later */ -#ifndef OVNI_PCF_H -#define OVNI_PCF_H +#ifndef PCF_H +#define PCF_H #include "uthash.h" #include @@ -49,4 +49,4 @@ struct pcf_type *pcf_add_type(struct pcf *pcf, int type_id, const char *label); struct pcf_value *pcf_add_value(struct pcf_type *type, int value, const char *label); struct pcf_value *pcf_find_value(struct pcf_type *type, int value); -#endif /* OVNI_PCF_H */ +#endif /* PCF_H */