summaryrefslogtreecommitdiff
path: root/demos/expr/exprv.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/expr/exprv.c')
-rw-r--r--demos/expr/exprv.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/demos/expr/exprv.c b/demos/expr/exprv.c
index a01b47bdb..b53682eec 100644
--- a/demos/expr/exprv.c
+++ b/demos/expr/exprv.c
@@ -18,7 +18,6 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
-
#include <stdio.h>
#include "gmp.h"
#include "expr-impl.h"
@@ -34,9 +33,9 @@ mpexpr_va_to_var (void *var[], va_list ap)
{
v = va_arg (ap, void *);
if (v == NULL)
- break;
+ break;
if (i >= MPEXPR_VARIABLES)
- return MPEXPR_RESULT_BAD_VARIABLE;
+ return MPEXPR_RESULT_BAD_VARIABLE;
var[i++] = v;
}