summaryrefslogtreecommitdiff
path: root/src/hello.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:28 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:52 -0800
commitc79cca04bed78839a18e73f3996805eb8001a812 (patch)
treeef31b13038a68d5d864c005d9ef5c736528fe6c3 /src/hello.c
parent35f1a40f6fad146db9d5546c47c45472d0ef0bed (diff)
downloadopenocd+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/hello.c')
-rw-r--r--src/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hello.c b/src/hello.c
index cfd6e2fe..0cd06adc 100644
--- a/src/hello.c
+++ b/src/hello.c
@@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
-#include "log.h"
+#include <helper/log.h>
COMMAND_HANDLER(handle_foo_command)
{