diff options
author | mifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-01-20 13:52:06 +0000 |
---|---|---|
committer | mifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-01-20 13:52:06 +0000 |
commit | 167ce32a7cb99962e6ae8f8c6d36b0999c16888c (patch) | |
tree | e890df091db83a545d3d0fac021a8da0b2ba2031 /src/helper/interpreter.h | |
parent | 68b97e4b5c40a70b42dc2a970f1b90b9a3e9f13d (diff) |
- added patch "remove error handler as planned"
https://lists.berlios.de/pipermail/openocd-development/2008-January/000665.html
(thanks to oyvind Harboe for the patch)
git-svn-id: svn://svn.berlios.de/openocd/trunk@260 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/interpreter.h')
-rw-r--r-- | src/helper/interpreter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helper/interpreter.h b/src/helper/interpreter.h index 93e8d39d..c4f8acfb 100644 --- a/src/helper/interpreter.h +++ b/src/helper/interpreter.h @@ -40,7 +40,8 @@ typedef struct var_s extern var_t *variables; -extern int field_le_to_host(u8 *buffer, void *priv); +struct scan_field_s; +extern int field_le_to_host(u8 *buffer, void *priv, struct scan_field_s *field); extern var_t* get_var_by_namenum(char *namenum); extern int interpreter_register_commands(struct command_context_s *cmd_ctx); |