summaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/configuration.h2
-rw-r--r--src/helper/log.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/configuration.h b/src/helper/configuration.h
index ce9159c3..caa80eec 100644
--- a/src/helper/configuration.h
+++ b/src/helper/configuration.h
@@ -23,7 +23,7 @@
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
-#include "command.h"
+#include <helper/command.h>
int parse_cmdline_args(struct command_context *cmd_ctx,
int argc, char *argv[]);
diff --git a/src/helper/log.h b/src/helper/log.h
index f2d19d16..ebcb8a15 100644
--- a/src/helper/log.h
+++ b/src/helper/log.h
@@ -26,7 +26,7 @@
#ifndef ERROR_H
#define ERROR_H
-#include "command.h"
+#include <helper/command.h>
/* To achieve C99 printf compatibility in MinGW, gnu_printf should be
* used for __attribute__((format( ... ))), with GCC v4.4 or later