diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 03:46:15 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:50 -0800 |
commit | f7bd1e8f3a302378687ded559e865c258d441c89 (patch) | |
tree | a8b84a30b862b5e7bc2c46fdca460b03abdcf967 /src/target | |
parent | 12499f97fdeceb7175a4d3847d6b9e2c95ce8b34 (diff) | |
download | openocd+libswd-f7bd1e8f3a302378687ded559e865c258d441c89.tar.gz openocd+libswd-f7bd1e8f3a302378687ded559e865c258d441c89.tar.bz2 openocd+libswd-f7bd1e8f3a302378687ded559e865c258d441c89.tar.xz openocd+libswd-f7bd1e8f3a302378687ded559e865c258d441c89.zip |
change #include "../hello.h" to "hello.h"
Before we can -I the top-level src/ directory alone, references to
"hello.h" must be updated. This is an internal header, so it does
not need angle brackets.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/testee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/testee.c b/src/target/testee.c index 45273887..991c64e8 100644 --- a/src/target/testee.c +++ b/src/target/testee.c @@ -23,7 +23,7 @@ #include "target.h" #include "target_type.h" #include <helper/log.h> -#include "../hello.h" +#include "hello.h" static const struct command_registration testee_command_handlers[] = { { |