aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/nettl.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-04-24 12:16:01 +0000
committerBill Meier <wmeier@newsguy.com>2009-04-24 12:16:01 +0000
commit72ef03e60a8ee4ac5768567afe7ad0437fd6ce93 (patch)
treee8832339a7818f0f8cb37e67c84902703884d5d7 /wiretap/nettl.c
parented948cc8f71ba810c115c779b854352dca136757 (diff)
[Trivial] Constify a few things
svn path=/trunk/; revision=28144
Diffstat (limited to 'wiretap/nettl.c')
-rw-r--r--wiretap/nettl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 0b758ae7f5..2bccaca99c 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -41,11 +41,11 @@
#define MAGIC_SIZE 12
/* HP-UX 9.x */
-static guint8 nettl_magic_hpux9[MAGIC_SIZE] = {
+static const guint8 nettl_magic_hpux9[MAGIC_SIZE] = {
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xD0, 0x00
};
/* HP-UX 10.x and 11.x */
-static guint8 nettl_magic_hpux10[MAGIC_SIZE] = {
+static const guint8 nettl_magic_hpux10[MAGIC_SIZE] = {
0x54, 0x52, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80
};