1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

DialogBox.c: fix ptr<->int conversion

This commit is contained in:
Jon Trulson 2021-10-23 16:40:22 -06:00
parent 237a3a4d94
commit 6d50de9448

View file

@ -831,7 +831,7 @@ ButtonCallback(
{
cb_data.reason = XmCR_DIALOG_BUTTON;
cb_data.event = b_cb_data->event;
cb_data.button_position = (int) client_data;
cb_data.button_position = (int) ((long)client_data);
cb_data.button = g;
XtCallCallbackList ((Widget) mgr, cb_list, &cb_data);
}