summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:25 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:17 -0800
commitd1bc4375e99ce52b72988494f35beca364234bae (patch)
treee79f10e7829e3cc55235970c877711b4b58d6665 /src/jtag
parent5d57cad00136ac4191483ff5c04d8795c8ea3bde (diff)
downloadopenocd+libswd-d1bc4375e99ce52b72988494f35beca364234bae.tar.gz
openocd+libswd-d1bc4375e99ce52b72988494f35beca364234bae.tar.bz2
openocd+libswd-d1bc4375e99ce52b72988494f35beca364234bae.tar.xz
openocd+libswd-d1bc4375e99ce52b72988494f35beca364234bae.zip
change #include "binarybuffer.h" to <helper/binarybuffer.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "binarybuffer.h" the following form should be used. #include <helper/binarybuffer.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/jtag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h
index ee967752..694e2f7e 100644
--- a/src/jtag/jtag.h
+++ b/src/jtag/jtag.h
@@ -23,7 +23,7 @@
#ifndef JTAG_H
#define JTAG_H
-#include "binarybuffer.h"
+#include <helper/binarybuffer.h>
#include "log.h"
#ifdef _DEBUG_JTAG_IO_