diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | emu/Nt/os.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +20080416 + fix emu/Nt/os.c in-flight error 20080415 googlecode update with correct dis files for acme tidier code for hoststderr diff --git a/emu/Nt/os.c b/emu/Nt/os.c index db93f642..3d60de8c 100644 --- a/emu/Nt/os.c +++ b/emu/Nt/os.c @@ -363,7 +363,7 @@ termset(void) conh = GetStdHandle(STD_OUTPUT_HANDLE); kbdh = GetStdHandle(STD_INPUT_HANDLE); errh = GetStdHandle(STD_ERROR_HANDLE); - if(errh == INVALID_FILE_HANDLE) + if(errh == INVALID_HANDLE_VALUE) errh = conh; // The following will fail if kbdh not from console (e.g. a pipe) diff --git a/include/version.h b/include/version.h index 7a6e7da1..fca0941d 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20080415)" +#define VERSION "Fourth Edition (20080416)" |
