aboutsummaryrefslogtreecommitdiffstats
path: root/src/xfns.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-08-03 20:21:52 +0000
committerGerd Moellmann <[email protected]>2000-08-03 20:21:52 +0000
commitd16700638b5681e86d5d62194748548da7bcee6f (patch)
tree27405272ee8452ffc50ef908158b132d835844d5 /src/xfns.c
parent5268b4422dbd9f66fb432e4225174f8c09f97bf4 (diff)
(Fx_file_dialog): Use NULL instead of 0 at the end of
variable argument lists of XtVaGetValues and XtVaSetValues.
Diffstat (limited to 'src/xfns.c')
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 7874e4a75f..740a7c15c6 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -10276,7 +10276,7 @@ selection dialog's entry field, if MUSTMATCH is non-nil.")
XmString text;
String data;
- XtVaGetValues (dialog, XmNtextString, &text, 0);
+ XtVaGetValues (dialog, XmNtextString, &text, NULL);
XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
XmStringFree (text);
file = build_string (data);