aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/radcom.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/radcom.c
parented948cc8f71ba810c115c779b854352dca136757 (diff)
[Trivial] Constify a few things
svn path=/trunk/; revision=28144
Diffstat (limited to 'wiretap/radcom.c')
-rw-r--r--wiretap/radcom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/radcom.c b/wiretap/radcom.c
index 16ccd6bb40..9abacf79fa 100644
--- a/wiretap/radcom.c
+++ b/wiretap/radcom.c
@@ -50,15 +50,15 @@ struct unaligned_frame_date {
/* Found at the beginning of the file. Bytes 2 and 3 (D2:00) seem to be
* different in some captures */
-static guint8 radcom_magic[8] = {
+static const guint8 radcom_magic[8] = {
0x42, 0xD2, 0x00, 0x34, 0x12, 0x66, 0x22, 0x88
};
-static guint8 encap_magic[4] = {
+static const guint8 encap_magic[4] = {
0x00, 0x42, 0x43, 0x09
};
-static guint8 active_time_magic[11] = {
+static const guint8 active_time_magic[11] = {
0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x20, 0x54, 0x69, 0x6d, 0x65
};