aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-04-24 17:12:29 +0000
committerGuy Harris <guy@alum.mit.edu>2007-04-24 17:12:29 +0000
commit8ff20a50cef7f75549d5e133c1c46d433878f80e (patch)
tree25cfe55795f41f834ef2a3a288483200598ad540 /epan
parent6f8cee8acdfd2f14cb62e911ac78d70297c2aef5 (diff)
Fix definition of tvb_memcpy() to match declaration.
svn path=/trunk/; revision=21555
Diffstat (limited to 'epan')
-rw-r--r--epan/tvbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index f3766f9514..4ebc655062 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -963,7 +963,7 @@ composite_memcpy(tvbuff_t *tvb, guint8* target, guint abs_offset, guint abs_leng
}
void*
-tvb_memcpy(tvbuff_t *tvb, guint8* target, gint offset, gint length)
+tvb_memcpy(tvbuff_t *tvb, void* target, gint offset, gint length)
{
guint abs_offset, abs_length;