From a989b7bb06dabd47732f5407ed2bab0f0dc59868 Mon Sep 17 00:00:00 2001 From: Makise Kurisu Date: Fri, 29 Apr 2016 21:47:03 +0200 Subject: [PATCH] Removed debug stuff --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index b81ef0b..97c71c4 100644 --- a/main.c +++ b/main.c @@ -139,7 +139,7 @@ int run_simulation(char *command, ...) { proc = popen(cmd, "r"); if (proc == NULL) { - printf("Error: Could not start the simulation.\n"); + printf("[E] Could not start the simulation.\n"); return 1; } @@ -182,7 +182,7 @@ int run_gtkwave(char *toplevel, char *command, ...) { vsprintf(cmd, command, argptr); va_end(argptr); - printf("RUN_SIM: %s\n", cmd); + //printf("RUN_SIM: %s\n", cmd); pid = system2(cmd, NULL, NULL); //printf("--> PID=%d\n", pid);