summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-29 18:27:45 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-30 16:29:34 -0800
commit7b2906de246bc37af99d432b3edf12e9f5f63521 (patch)
tree90fd60bb7ac07e23e61a74a6f67a6ea80d06e7f5 /src/openocd.c
parent8e8a359af2a5ab3cc7c795e147aa0ca3ec06288f (diff)
downloadopenocd_libswd-7b2906de246bc37af99d432b3edf12e9f5f63521.tar.gz
openocd_libswd-7b2906de246bc37af99d432b3edf12e9f5f63521.tar.bz2
openocd_libswd-7b2906de246bc37af99d432b3edf12e9f5f63521.tar.xz
openocd_libswd-7b2906de246bc37af99d432b3edf12e9f5f63521.zip
do not extern 'interp' from command.c
Adds 'interp' field to command_context, chasing the few remaining references to the global variable outside of the command module.
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 2a65b4d8..1be209ad 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -277,7 +277,7 @@ int openocd_main(int argc, char *argv[])
return EXIT_FAILURE;
#endif
- ret = server_init();
+ ret = server_init(cmd_ctx);
if (ERROR_OK != ret)
return EXIT_FAILURE;