diff options
-rw-r--r-- | doc/HACKING.md | 1 | ||||
-rw-r--r-- | include/libnet.h.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/HACKING.md b/doc/HACKING.md index d340f2f..b687613 100644 --- a/doc/HACKING.md +++ b/doc/HACKING.md @@ -8,6 +8,7 @@ Maintenance * Reference issues from GitHub pull requests to alert issue subscribers * Use version in `configure.ac` for -betaN/-rcN and GA releases * Bump ABI version in `src/Makefile.am` just before release! (see below) +* Coding style is C89 keeping consistent brace and indentation style. Release Checklist diff --git a/include/libnet.h.in b/include/libnet.h.in index 357b794..5fe2ebf 100644 --- a/include/libnet.h.in +++ b/include/libnet.h.in @@ -49,7 +49,7 @@ extern "C" { * TODO move the stuff we ALWAYS need out of the DOXYGEN ifndef block * and minimize their redundancies (see doc/TODO) */ -#ifndef DOXYGEN_SHOULD_SKIP_THIS // mess +#ifndef DOXYGEN_SHOULD_SKIP_THIS #include <stdio.h> #include <string.h> #include <fcntl.h> |