X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;h=2eec4c6b8118dae9afb37ebbe124d8033a78f966;hb=14f4522a17db23e67a6fa17876633cc6260cb42b;hp=1908bd98c79c2532fecb0827ecec0f8ce16a4594;hpb=5f91f0868ec7cdbdb7900a2cb6e876b467fb2a6e;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-logistic.c b/src/ui/gui/psppire-dialog-action-logistic.c index 1908bd98c7..2eec4c6b81 100644 --- a/src/ui/gui/psppire-dialog-action-logistic.c +++ b/src/ui/gui/psppire-dialog-action-logistic.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2008, 2010, 2011, 2012 Free Software Foundation + Copyright (C) 2008, 2010, 2011, 2012, 2014 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,6 +20,8 @@ #include "psppire-dialog-action-logistic.h" #include "psppire-value-entry.h" +#include + #include "dialog-common.h" #include "helper.h" #include @@ -165,13 +167,14 @@ generate_syntax (PsppireDialogAction *a) ds_put_cstr (&str, "\n\t/CRITERIA ="); - syntax_gen_pspp (&str, " CUT(%g)", rd->cut_point); + syntax_gen_pspp (&str, " CUT(%.*g)", DBL_DIG + 1, rd->cut_point); syntax_gen_pspp (&str, " ITERATE(%d)", rd->max_iterations); if (rd->conf) { - syntax_gen_pspp (&str, "\n\t/PRINT = CI(%g)", rd->conf_level); + syntax_gen_pspp (&str, "\n\t/PRINT = CI(%.*g)", + DBL_DIG + 1, rd->conf_level); } if (rd->constant)