summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdvik/gui/xm_prefs_helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/xdvik/gui/xm_prefs_helpers.c')
-rw-r--r--Build/source/texk/xdvik/gui/xm_prefs_helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/xdvik/gui/xm_prefs_helpers.c b/Build/source/texk/xdvik/gui/xm_prefs_helpers.c
index d4b0b6996dc..5feb3e387f0 100644
--- a/Build/source/texk/xdvik/gui/xm_prefs_helpers.c
+++ b/Build/source/texk/xdvik/gui/xm_prefs_helpers.c
@@ -152,13 +152,13 @@ destroy_dialog_cb(Widget w, XtPointer client_data, XtPointer call_data)
#if USE_COMBOBOX
/* Need to unselect the `Other...' entry from the list; to do this,
we select the index from XmNuserData if it's >= 0, or the first item. */
- int idx;
+ ptrdiff_t idx;
XtPointer p;
XtVaGetValues(browser_combo,
XmNlist, &browser_list_w,
XmNuserData, &p,
NULL);
- idx = (int)p;
+ idx = (ptrdiff_t) p;
if (browser_list_w == 0)
XDVI_ERROR((stderr, "couldn't get list component of combo box!\n"));
else {