summaryrefslogtreecommitdiff
path: root/src/target/algorithm.c
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/target/algorithm.c
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/target/algorithm.c')
-rw-r--r--src/target/algorithm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/algorithm.c b/src/target/algorithm.c
index 76cf48bc..57383aea 100644
--- a/src/target/algorithm.c
+++ b/src/target/algorithm.c
@@ -22,7 +22,7 @@
#endif
#include "algorithm.h"
-#include "binarybuffer.h"
+#include <helper/binarybuffer.h>
void init_mem_param(struct mem_param *param, uint32_t address, uint32_t size, enum param_direction direction)