summaryrefslogtreecommitdiff
path: root/src/plugins/logger/logger-tail.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-03-19 10:39:13 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-03-19 10:39:13 +0100
commit9b380a935b9fe07daf7e1e1f0ad12a41519bb10c (patch)
treee51f291fdb9b80d4f2d39abaacb8705e5c987e9c /src/plugins/logger/logger-tail.h
parentbc96d2f1ec4bcba58aab03042a9266842a42cfcb (diff)
downloadweechat-9b380a935b9fe07daf7e1e1f0ad12a41519bb10c.zip
core: fix use of reserved C identifiers in headers (closes #31)
Diffstat (limited to 'src/plugins/logger/logger-tail.h')
-rw-r--r--src/plugins/logger/logger-tail.h6
1 files changed, 3 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>.
*/
-#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 */