Move 'static' qualifier before 'const' in a couple of places. I didn't
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 23 Feb 2012 11:03:30 +0000 (11:03 +0000)
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 23 Feb 2012 11:03:30 +0000 (11:03 +0000)
know it mattered, but gcc warns.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41155 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-gsm_rlcmac.c

index 177ff0d0ed495c4788254ad117f91d683a782c3e..991db7a02c98fc862990e89b5198545ab101d17d 100644 (file)
@@ -3820,7 +3820,7 @@ CSN_DESCR_BEGIN(CDMA2000_Description_t)
   CSN_ERROR    (CDMA2000_Description_t, "Not Implemented", CSN_ERROR_STREAM_NOT_SUPPORTED),
 CSN_DESCR_END  (CDMA2000_Description_t)
 
-const static guint8 NR_OF_FDD_CELLS_map[32] = {0, 10, 19, 28, 36, 44, 52, 60, 67, 74, 81, 88, 95, 102, 109, 116, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+static const guint8 NR_OF_FDD_CELLS_map[32] = {0, 10, 19, 28, 36, 44, 52, 60, 67, 74, 81, 88, 95, 102, 109, 116, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
 CSN_CallBackStatus_t callback_UTRAN_FDD_map_NrOfFrequencies(proto_tree *tree _U_, tvbuff_t *tvb _U_, void* param1, void* param2, int bit_offset _U_, int ett_csn1 _U_)
 {   /* TS 44.060 Table 11.2.9b.2.a */
     guint8 * pNrOfCells = (guint8*)param1;
@@ -3922,7 +3922,7 @@ CSN_DESCR_BEGIN(UTRAN_FDD_Description_t)
 CSN_DESCR_END  (UTRAN_FDD_Description_t)
 
 
-const static guint8 NR_OF_TDD_CELLS_map[32] = {0, 9, 17, 25, 32, 39, 46, 53, 59, 65, 71, 77, 83, 89, 95, 101, 106, 111, 116, 121, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+static const guint8 NR_OF_TDD_CELLS_map[32] = {0, 9, 17, 25, 32, 39, 46, 53, 59, 65, 71, 77, 83, 89, 95, 101, 106, 111, 116, 121, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
 CSN_CallBackStatus_t callback_UTRAN_TDD_map_NrOfFrequencies(proto_tree *tree _U_, tvbuff_t *tvb _U_, void* param1, void* param2, int bit_offset _U_, int ett_csn1 _U_)
 {  /* TS 44.060 Table 11.2.9b.2.b */
     guint8 * pNrOfCells = (guint8*)param1;