From 4b6343c874a43425b20f41c942ff42b425c362d8 Mon Sep 17 00:00:00 2001
From: Alexis Nasr <alexis.nasr@lif.univ-mrs.fr>
Date: Wed, 4 Apr 2018 14:46:40 +0200
Subject: [PATCH] suppression of an incongrous printf

---
 maca_tools/src/json2mcf.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/maca_tools/src/json2mcf.c b/maca_tools/src/json2mcf.c
index 1e261a8..5510985 100644
--- a/maca_tools/src/json2mcf.c
+++ b/maca_tools/src/json2mcf.c
@@ -308,8 +308,7 @@ void update_link(word_buffer *wb,  int orig, int dest, char *label, char *status
   if(status_link && !strcmp(status_link, "G")){
     fprintf(stderr, "updating governor of token %d with %d\n", orig, dest);
     w = word_buffer_get_word_n(wb, offset + orig);
-    printf("dest - orig = %d\n", dest - orig);
-       word_set_gov(w, dest - orig);
+    word_set_gov(w, dest - orig);
   }
 
   
-- 
GitLab