Stephen Fisher <steve@...> writes:

> Could it be because it's used by the K12_HEXDMP macro?
> 
>     #define K12_HEXDMP(x,a,b,c,d) k12_hexdump(x,a,b,c,d)
> 
> Which then calls a function that uses it?  I wonder if changing the 
> macro to the function itself would satisfy that version of gcc?

Ah that's it.  The macro is a nop if DEBUG_K12 isn't defined, which it isn't. 

/* #define DEBUG_K12 */
#ifdef DEBUG_K12
#define K12_HEXDMP(x,a,b,c,d) k12_hexdump(x,a,b,c,d)
#else
#define K12_HEXDMP(x,a,b,c,d)
#endif


___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <wireshark-dev@wireshark.org>
Archives:    http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
             mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe

Reply via email to