diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
commit | 03ec746bf1afc498c91a4bff3a3f80d873594b95 (patch) | |
tree | 2d628930d146a469503d32f62181997a75e459a3 /byterun/debugger.c | |
parent | 9f30d68f00c8933445d45416dcc7f67c7f1ca934 (diff) |
deTABisation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1563 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/debugger.c')
-rw-r--r-- | byterun/debugger.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/byterun/debugger.c b/byterun/debugger.c index c6f38d02f..801de39ee 100644 --- a/byterun/debugger.c +++ b/byterun/debugger.c @@ -217,11 +217,11 @@ void debugger(event) case REQ_CHECKPOINT: i = fork(); if (i == 0) { - close_connection(); /* Close parent connection. */ - open_connection(); /* Open new connection with debugger */ + close_connection(); /* Close parent connection. */ + open_connection(); /* Open new connection with debugger */ } else { - putword(dbg_out, i); - flush(dbg_out); + putword(dbg_out, i); + flush(dbg_out); } break; case REQ_GO: |