From 87f38ac348f30919f348e4da2932836bfc63051f Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 9 Sep 2023 10:41:03 +0300 Subject: [PATCH] Fix incorrect multiple inclusion guards --- source/core/environ.h | 4 ++-- source/fs/filemonitor.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/environ.h b/source/core/environ.h index 7fbca16..9f2eaf6 100644 --- a/source/core/environ.h +++ b/source/core/environ.h @@ -1,5 +1,5 @@ -#ifndef ENVIRON_H_ -#define ENVIRON_H_ +#ifndef MSP_CORE_ENVIRON_H_ +#define MSP_CORE_ENVIRON_H_ #include #include "mspcore_api.h" diff --git a/source/fs/filemonitor.h b/source/fs/filemonitor.h index 3ce5d79..2e3b6bb 100644 --- a/source/fs/filemonitor.h +++ b/source/fs/filemonitor.h @@ -1,5 +1,5 @@ -#ifndef FILEMONITOR_H_ -#define FILEMONITOR_H_ +#ifndef MSP_FS_FILEMONITOR_H_ +#define MSP_FS_FILEMONITOR_H_ #include #include -- 2.45.2