X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;h=1908bd98c79c2532fecb0827ecec0f8ce16a4594;hb=78cffcbf683cd66a6717d40854825d731fd4f01d;hp=2eec4c6b8118dae9afb37ebbe124d8033a78f966;hpb=f30abae1f2518df745e661abe5b4087597e1a00f;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-logistic.c b/src/ui/gui/psppire-dialog-action-logistic.c index 2eec4c6b81..1908bd98c7 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, 2014 Free Software Foundation + Copyright (C) 2008, 2010, 2011, 2012 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,8 +20,6 @@ #include "psppire-dialog-action-logistic.h" #include "psppire-value-entry.h" -#include - #include "dialog-common.h" #include "helper.h" #include @@ -167,14 +165,13 @@ generate_syntax (PsppireDialogAction *a) ds_put_cstr (&str, "\n\t/CRITERIA ="); - syntax_gen_pspp (&str, " CUT(%.*g)", DBL_DIG + 1, rd->cut_point); + syntax_gen_pspp (&str, " CUT(%g)", rd->cut_point); syntax_gen_pspp (&str, " ITERATE(%d)", rd->max_iterations); if (rd->conf) { - syntax_gen_pspp (&str, "\n\t/PRINT = CI(%.*g)", - DBL_DIG + 1, rd->conf_level); + syntax_gen_pspp (&str, "\n\t/PRINT = CI(%g)", rd->conf_level); } if (rd->constant)