From afc16dca546862ff7e19c5bb49568486615b857e Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 6 Jul 2020 21:22:18 +0200 Subject: Guard block is missing --- src/caja-self-check-functions.h | 6 ++++++ src/file-manager/caja-audio-mime-types.h | 6 ++++++ 2 files changed, 12 insertions(+) (limited to 'src') diff --git a/src/caja-self-check-functions.h b/src/caja-self-check-functions.h index 398999bf..ec503943 100644 --- a/src/caja-self-check-functions.h +++ b/src/caja-self-check-functions.h @@ -27,6 +27,9 @@ */ +#ifndef __CAJA_SELF_CHECK_FUNCTIONS_H__ +#define __CAJA_SELF_CHECK_FUNCTIONS_H__ + void caja_run_self_checks (void); /* Putting the prototypes for these self-check functions in each @@ -45,3 +48,6 @@ void caja_run_self_checks (void); /* Generate prototypes for all the functions. */ CAJA_FOR_EACH_SELF_CHECK_FUNCTION (CAJA_SELF_CHECK_FUNCTION_PROTOTYPE) + +#endif /* __CAJA_SELF_CHECK_FUNCTIONS_H__ */ + diff --git a/src/file-manager/caja-audio-mime-types.h b/src/file-manager/caja-audio-mime-types.h index 7b3d516c..998fc4ba 100644 --- a/src/file-manager/caja-audio-mime-types.h +++ b/src/file-manager/caja-audio-mime-types.h @@ -1,4 +1,7 @@ /* See https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html?gi-language=c#table-of-audio-types */ +#ifndef __CAJA_AUDIO_MIME_TYPES_H__ +#define __CAJA_AUDIO_MIME_TYPES_H__ + static const char* audio_mime_types[] = { "audio/3gpp", @@ -43,3 +46,6 @@ static const char* audio_mime_types[] = "audio/x-xm", "application/x-flac", }; + +#endif /* __CAJA_AUDIO_MIME_TYPES_H__ */ + -- cgit v1.2.1