There are 2 warnings during compilation. These are
both pointer to integer conversions:
src/XMotif/XmDialogs.c: In function ‘toggledNodeCheckCB’:
src/XMotif/XmDialogs.c:962:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
int bit = (int) client_data;
^
src/XMotif/XmDialogs.c: In function ‘wpignodecheck_’:
src/XMotif/XmDialogs.c:1053:67: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
XtAddCallback (w, XmNvalueChangedCallback, toggledNodeCheckCB, (XtPointer) i);
^
It would be nice to remove these.
There are 2 warnings during compilation. These are
both pointer to integer conversions:
src/XMotif/XmDialogs.c: In function ‘toggledNodeCheckCB’:
src/XMotif/XmDialogs.c:962:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
int bit = (int) client_data;
^
src/XMotif/XmDialogs.c: In function ‘wpignodecheck_’:
src/XMotif/XmDialogs.c:1053:67: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
XtAddCallback (w, XmNvalueChangedCallback, toggledNodeCheckCB, (XtPointer) i);
^
It would be nice to remove these.