diff --git a/maca_tools/src/json2mcf.c b/maca_tools/src/json2mcf.c index 1e261a898c157cb24b7a62e454bc7ad226ead12d..55109851ac73d13dc8e9299fd23b70adec760dba 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); }