summaryrefslogtreecommitdiff
path: root/epan/tvbuff.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-19 05:19:10 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-19 05:19:10 +0000
commitd09c4c4eabd68e19b7ac8573cd28b7ebcb4e53f8 (patch)
tree5bc2375091b7603ad4fdc66639ed3e858951e753 /epan/tvbuff.h
parentfbd4ed0f738d2bb3f0f40a5312b0578dba9e1955 (diff)
downloadwireshark-d09c4c4eabd68e19b7ac8573cd28b7ebcb4e53f8.tar.gz
Constify a bunch of stuff.
svn path=/trunk/; revision=10106
Diffstat (limited to 'epan/tvbuff.h')
-rw-r--r--epan/tvbuff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/tvbuff.h b/epan/tvbuff.h
index f999be3245..c1a77481ce 100644
--- a/epan/tvbuff.h
+++ b/epan/tvbuff.h
@@ -9,7 +9,7 @@
* the data of a backing tvbuff, or can be a composite of
* other tvbuffs.
*
- * $Id: tvbuff.h,v 1.39 2004/02/01 21:30:17 guy Exp $
+ * $Id: tvbuff.h,v 1.40 2004/02/19 05:19:10 guy Exp $
*
* Copyright (c) 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -93,7 +93,7 @@ typedef struct tvbuff {
* which has flattened its data due to a call
* to tvb_get_ptr().
*/
- guint8 *real_data;
+ const guint8 *real_data;
/* Length of virtual buffer (and/or real_data). */
guint length;