diff options
author | Joerg Mayer <jmayer@loplof.de> | 2014-09-18 00:09:06 +0200 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2014-09-17 22:10:24 +0000 |
commit | ec2a20fb377d17f3917c3d821b19e9071549662c (patch) | |
tree | 785c631c18826d12a025cb366b8069246da2decf /doc | |
parent | 7e638057089bb9d599cd35d4673aef70e0ae58a1 (diff) | |
download | wireshark-ec2a20fb377d17f3917c3d821b19e9071549662c.tar.gz wireshark-ec2a20fb377d17f3917c3d821b19e9071549662c.tar.bz2 wireshark-ec2a20fb377d17f3917c3d821b19e9071549662c.zip |
Add a missing cast to the sample code
Change-Id: Id4f258e0e45e44c1ab63bd77a6fab10013a4810c
Reviewed-on: https://code.wireshark.org/review/4160
Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.request_response_tracking | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.request_response_tracking b/doc/README.request_response_tracking index 09d945e40d..47a3845044 100644 --- a/doc/README.request_response_tracking +++ b/doc/README.request_response_tracking @@ -92,7 +92,7 @@ actual dissector. /* * Do we already have a state structure for this conv */ - pana_info = conversation_get_proto_data(conversation, proto_pana); + pana_info = (pana_conv_info_t *)conversation_get_proto_data(conversation, proto_pana); if (!pana_info) { /* * No. Attach that information to the conversation, and add |