diff options
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: |