Wireshark-commits: [Wireshark-commits] master f23fe3b: amqp: fix the type of elements of an array o
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sat, 4 Jul 2020 21:01:36 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=f23fe3b84ec43916762f90ed4725cec5dc69f4fe
Submitter: "Guy Harris <gharris@xxxxxxxxx>"
Changed: branch: master
Repository: wireshark

Commits:

f23fe3b by Guy Harris (gharris@xxxxxxxxx):

    amqp: 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".
    
    Make some more static data itmes const while we're at it.
    
    Change-Id: I0bc10cce22b57d9f405f97a7facc1231aa53e668
    Reviewed-on: https://code.wireshark.org/review/37700
    Petri-Dish: Guy Harris <gharris@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Guy Harris <gharris@xxxxxxxxx>
    

Actions performed:

    from  2340a2e   DHCPv6: Fix a header field entry.
     add  f23fe3b   amqp: fix the type of elements of an array of pointers to hf_ values.


Summary of changes:
 epan/dissectors/packet-amqp.c | 94 +++++++++++++++++++++----------------------
 1 file changed, 47 insertions(+), 47 deletions(-)