summaryrefslogtreecommitdiff
path: root/src/helper/binarybuffer.h
diff options
context:
space:
mode:
authormifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-01-20 13:52:06 +0000
committermifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-01-20 13:52:06 +0000
commit167ce32a7cb99962e6ae8f8c6d36b0999c16888c (patch)
treee890df091db83a545d3d0fac021a8da0b2ba2031 /src/helper/binarybuffer.h
parent68b97e4b5c40a70b42dc2a970f1b90b9a3e9f13d (diff)
downloadopenocd+libswd-167ce32a7cb99962e6ae8f8c6d36b0999c16888c.tar.gz
openocd+libswd-167ce32a7cb99962e6ae8f8c6d36b0999c16888c.tar.bz2
openocd+libswd-167ce32a7cb99962e6ae8f8c6d36b0999c16888c.tar.xz
openocd+libswd-167ce32a7cb99962e6ae8f8c6d36b0999c16888c.zip
- 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/binarybuffer.h')
-rw-r--r--src/helper/binarybuffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helper/binarybuffer.h b/src/helper/binarybuffer.h
index 6f39e7cf..feb5724b 100644
--- a/src/helper/binarybuffer.h
+++ b/src/helper/binarybuffer.h
@@ -41,7 +41,8 @@ extern u8* buf_set_buf(u8 *src, int src_start, u8 *dst, int dst_start, int len);
extern int str_to_buf(char* str, int len, u8 *bin_buf, int buf_size, int radix);
extern char* buf_to_str(u8 *buf, int size, int radix);
-extern int buf_to_u32_handler(u8 *in_buf, void *priv);
+struct scan_field_s;
+extern int buf_to_u32_handler(u8 *in_buf, void *priv, struct scan_field_s *field);
#define CEIL(m, n) ((m + n - 1) / n)