aboutsummaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-02-12 12:47:20 +0000
committerOmar Polo <op@omarpolo.com>2021-02-12 12:47:20 +0000
commit52418c8d828bc25e0e84cc25d5e349a84be0b397 (patch)
tree480166acacfecd667dcd69e68df8f6a305792277 /log.c
parent3cb3dd4d422cdead2dd09f1e3ce3eff35a9e6dc8 (diff)
fix various compilation errors
Include gmid.h as first header in every file, as it then includes config.h (that defines _GNU_SOURCE for instance). Fix also a warning about unsigned vs signed const char pointers in openssl.
Diffstat (limited to 'log.c')
-rw-r--r--log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/log.c b/log.c
index 26bd988..7f2d555 100644
--- a/log.c
+++ b/log.c
@@ -14,6 +14,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include "gmid.h"
+
#include <errno.h>
#include <netdb.h>
#include <stdarg.h>
@@ -21,8 +23,6 @@
#include <string.h>
#include <syslog.h>
-#include "gmid.h"
-
void
fatal(const char *fmt, ...)
{