diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:28 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | c79cca04bed78839a18e73f3996805eb8001a812 (patch) | |
tree | ef31b13038a68d5d864c005d9ef5c736528fe6c3 /src/server | |
parent | 35f1a40f6fad146db9d5546c47c45472d0ef0bed (diff) | |
download | openocd_libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.gz openocd_libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.bz2 openocd_libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.xz openocd_libswd-c79cca04bed78839a18e73f3996805eb8001a812.zip |
change #include "log.h" to <helper/log.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "log.h"
the following form should be used.
#include <helper/log.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/httpd_stubs.c | 2 | ||||
-rw-r--r-- | src/server/server.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/httpd_stubs.c b/src/server/httpd_stubs.c index 6c289afa..0360fe61 100644 --- a/src/server/httpd_stubs.c +++ b/src/server/httpd_stubs.c @@ -21,7 +21,7 @@ #include <config.h> #endif #include "httpd.h" -#include "log.h" +#include <helper/log.h> int httpd_start(struct command_context *cmd_ctx) { diff --git a/src/server/server.h b/src/server/server.h index e632bf1e..be1afbe4 100644 --- a/src/server/server.h +++ b/src/server/server.h @@ -26,7 +26,7 @@ #ifndef SERVER_H #define SERVER_H -#include "log.h" +#include <helper/log.h> #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> |