From 7bb2c09a2c9c725cfe1664192f50f3d25a83d2dd Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Mon, 15 Feb 2016 11:30:14 +0100 Subject: [PATCH] Small change in gauss --- gauss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gauss.c b/gauss.c index d1c5b41..178a108 100644 --- a/gauss.c +++ b/gauss.c @@ -137,10 +137,10 @@ int main( int argc, char *argv[] ) { glsPrint(m); if(solve(m)) { printf("Output: \n"); - glsPrint(m); } else { printf("Failed to solve. :(\n"); } + glsPrint(m); return 0; }