From 9b380a935b9fe07daf7e1e1f0ad12a41519bb10c Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Wed, 19 Mar 2014 10:39:13 +0100 Subject: core: fix use of reserved C identifiers in headers (closes #31) --- src/plugins/logger/logger-tail.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/logger/logger-tail.h') diff --git a/src/plugins/logger/logger-tail.h b/src/plugins/logger/logger-tail.h index bdfad66aa..b03d58604 100644 --- a/src/plugins/logger/logger-tail.h +++ b/src/plugins/logger/logger-tail.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see . */ -#ifndef __WEECHAT_LOGGER_TAIL_H -#define __WEECHAT_LOGGER_TAIL_H 1 +#ifndef WEECHAT_LOGGER_TAIL_H +#define WEECHAT_LOGGER_TAIL_H 1 struct t_logger_line { @@ -30,4 +30,4 @@ extern struct t_logger_line *logger_tail_file (const char *filename, int n_lines); extern void logger_tail_free (struct t_logger_line *lines); -#endif /* __WEECHAT_LOGGER_TAIL_H */ +#endif /* WEECHAT_LOGGER_TAIL_H */ -- cgit v1.2.3