X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;fp=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;h=5fb557031585ace80aed8b7e99ac1e618f6517c6;hb=8855cb5d6ff72efd5bdb05b339cf9fb175991d5e;hp=0c4dc19cdc27895565b6376c2a30071abf6d5a04;hpb=c2d972816fce591524db963390a97ff32d55117c;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-logistic.c b/src/ui/gui/psppire-dialog-action-logistic.c index 0c4dc19cdc..5fb5570315 100644 --- a/src/ui/gui/psppire-dialog-action-logistic.c +++ b/src/ui/gui/psppire-dialog-action-logistic.c @@ -198,12 +198,13 @@ generate_syntax (PsppireDialogAction *a) g_string_append (strx, categoricals->str); g_string_free (categoricals, TRUE); g_slist_free (vars); - - g_string_append (strx, "\n\t/CRITERIA ="); - - g_string_append_printf (strx, " CUT(%g)", rd->cut_point); - g_string_append_printf (strx, " ITERATE(%d)", rd->max_iterations); + struct string opt_str; + ds_init_cstr (&opt_str, "\n\t/CRITERIA ="); + syntax_gen_pspp (&opt_str, " CUT(%g)", rd->cut_point); + syntax_gen_pspp (&opt_str, " ITERATE(%d)", rd->max_iterations); + g_string_append (strx, ds_data (&opt_str)); + ds_destroy (&opt_str); if (rd->conf) {