Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] Problems in IO Graphs with time values greater than ~429 sec

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Mon, 03 Dec 2007 13:11:18 -0800
Stig Bj�rlykke wrote:

And then the next question:
What to do with this GUINT_TO_POINTER when yscale_max changes to guint64?

OBJECT_SET_DATA(menu_item, "yscale_max", GUINT_TO_POINTER(yscale_max[i]));

	OBJECT_SET_DATA(menu_item, "yscale_max", (void *)&yscale_max[i]));

and the equivalent changes for OBJECT_GET_DATA; yscale_max is a static array.