cleaning
authorLaurent Mazet <mazet@softndesign.org>
Fri, 27 Jan 2023 22:40:58 +0000 (23:40 +0100)
committerLaurent Mazet <mazet@softndesign.org>
Fri, 27 Jan 2023 22:40:58 +0000 (23:40 +0100)
calc.c

diff --git a/calc.c b/calc.c
index 826c58f49ffa83ee80605552510380624e1ba24e..cf37f230552f8433e3f057d675e204b9b454c266 100644 (file)
--- a/calc.c
+++ b/calc.c
@@ -216,7 +216,7 @@ int main (int argc, char *argv[])
             }
             element_t *element = parser (line[i], NULL, -9);
             if (element == ERROR_OP) {
-                VERBOSE (WARNING, fprintf (stdout, "error while parsing: '%s'\n", line[i]); fflush (stdout));
+                VERBOSE (WARNING, fprintf (stdout, "error while parsing: '%s'\n", line[i]));
                 ret = 1;
             } else if (element != NULL) {
                 VERBOSE (INFO, print_element (element, 0));