URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=78a507b142d1f10b54a379b1ceb837b9db687618
Submitter: "Guy Harris <gharris@xxxxxxxxx>"
Changed: branch: master
Repository: wireshark
Commits:
78a507b by Guy Harris (gharris@xxxxxxxxx):
VRT: fix the type of elements of an array of pointers to hf_ values.
"int * const a[]" means "array of const pointers to (non-const) int". so
the array elements are all const; "const int *a[]" means "array of
(non-const) pointrs to const int".
Change-Id: I790f6ecb2d9616ff1ae9ca47364e1d5443e36ace
Reviewed-on: https://code.wireshark.org/review/37528
Petri-Dish: Guy Harris <gharris@xxxxxxxxx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <gharris@xxxxxxxxx>
Actions performed:
from 1d0f7c3 ICQ: fix the type of elements of an array of pointers to hf_ values.
add 78a507b VRT: fix the type of elements of an array of pointers to hf_ values.
Summary of changes:
epan/dissectors/packet-vrt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)