summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:15:03 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:24:49 -0800
commit6db3ed48c6d152446dafc70b8495970cd2b22d3a (patch)
treef8102bdc47bec03ab67410b653c0171ee74f3e99 /src/openocd.c
parent5e7369d99aaa27a4c110507a3f0b0431fa566090 (diff)
downloadopenocd+libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.gz
openocd+libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.bz2
openocd+libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.xz
openocd+libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.zip
change #include "httpd.h" to <server/httpd.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "httpd.h" the following form should be used. #include <server/httpd.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c
index c0614236..58ad6178 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -40,7 +40,7 @@
#include "server.h"
#include <server/gdb_server.h>
-#include "httpd.h"
+#include <server/httpd.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>