WMIO: make a variable static

This commit is contained in:
Martin Mathieson 2024-01-07 22:10:40 +00:00
parent d52dc11ae4
commit e1efe33c0b
1 changed files with 2 additions and 2 deletions

View File

@ -413,7 +413,7 @@ static int dissect_wmio_encoding_qualifierset(tvbuff_t *tvb, gint offset, packet
/* DictionaryReference
* https://learn.microsoft.com/de-de/openspecs/windows_protocols/ms-wmio/40adf451-f5bc-4b0a-ab97-d620bb638470
*/
const gchar* stringDictionary[] =
static const gchar* stringDictionary[] =
{ "'"
, "key"
, ""
@ -1239,4 +1239,4 @@ proto_register_WMIO (void)
proto_WMIO = proto_register_protocol ("WMIO", "WMIO", "WMIO");
proto_register_field_array (proto_WMIO, hf, array_length (hf));
proto_register_subtree_array (ett, array_length (ett));
}
}