# HG changeset patch # User Gerd Moellmann # Date 965334112 0 # Node ID 3bb43339533ce7903e681ccd8767ac436312ca4d # Parent f0463edb8518ce05b513ac7adeb38714ee7a59ed (Fx_file_dialog): Use NULL instead of 0 at the end of variable argument lists of XtVaGetValues and XtVaSetValues. diff -r f0463edb8518 -r 3bb43339533c src/xfns.c --- a/src/xfns.c Thu Aug 03 20:11:01 2000 +0000 +++ b/src/xfns.c Thu Aug 03 20:21:52 2000 +0000 @@ -10276,7 +10276,7 @@ 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);