diff options
author | David Robillard <d@drobilla.net> | 2022-12-10 15:21:32 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-11 13:15:02 -0500 |
commit | 8adcececdb37a3b0c547ed59ad49d9fd7b69eae9 (patch) | |
tree | a4988033bf0e3e2c6d8af516a67a38f54c7c6203 /include/lv2/log | |
parent | 3c79698806163325b68d6ce249044685e8fcc848 (diff) | |
download | lv2-8adcececdb37a3b0c547ed59ad49d9fd7b69eae9.tar.xz |
Clean up include guards
Diffstat (limited to 'include/lv2/log')
-rw-r--r-- | include/lv2/log/log.h | 6 | ||||
-rw-r--r-- | include/lv2/log/logger.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/lv2/log/log.h b/include/lv2/log/log.h index cdaa6d3..b460f45 100644 --- a/include/lv2/log/log.h +++ b/include/lv2/log/log.h @@ -1,8 +1,8 @@ // Copyright 2012-2016 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef LV2_LOG_H -#define LV2_LOG_H +#ifndef LV2_LOG_LOG_H +#define LV2_LOG_LOG_H /** @defgroup log Log @@ -97,4 +97,4 @@ typedef struct { @} */ -#endif /* LV2_LOG_H */ +#endif // LV2_LOG_LOG_H diff --git a/include/lv2/log/logger.h b/include/lv2/log/logger.h index b7d2856..83cd653 100644 --- a/include/lv2/log/logger.h +++ b/include/lv2/log/logger.h @@ -1,8 +1,8 @@ // Copyright 2012-2016 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef LV2_ATOM_LOGGER_H -#define LV2_ATOM_LOGGER_H +#ifndef LV2_LOG_LOGGER_H +#define LV2_LOG_LOGGER_H /** @defgroup logger Logger @@ -141,4 +141,4 @@ lv2_log_warning(LV2_Log_Logger* logger, const char* fmt, ...) @} */ -#endif /* LV2_LOG_LOGGER_H */ +#endif // LV2_LOG_LOGGER_H |