From d626517655604bdd51c3762b8327d8d1cafd1ad9 Mon Sep 17 00:00:00 2001 From: Marion Guthmuller Date: Tue, 4 Nov 2014 11:49:32 +0100 Subject: [PATCH] model-checker : comment debug printf --- src/mc/mc_checkpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mc/mc_checkpoint.c b/src/mc/mc_checkpoint.c index aaa99adfbb..41b3738c3f 100644 --- a/src/mc/mc_checkpoint.c +++ b/src/mc/mc_checkpoint.c @@ -709,7 +709,7 @@ void MC_restore_snapshot(mc_snapshot_t snapshot) new_fd = open(snapshot->current_fd[i]->filename, snapshot->current_fd[i]->flags); if(new_fd != -1 && new_fd != snapshot->current_fd[i]->number){ dup2(new_fd, snapshot->current_fd[i]->number); - fprintf(stderr, "%p\n", fdopen(snapshot->current_fd[i]->number, "rw")); + //fprintf(stderr, "%p\n", fdopen(snapshot->current_fd[i]->number, "rw")); lseek(snapshot->current_fd[i]->number, snapshot->current_fd[i]->current_position, SEEK_SET); }; } -- 2.20.1