From 76a2f7be03ab622d03e83aaef4a73c1ad7aa2682 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Wed, 16 Apr 2008 11:05:44 +0000 Subject: 20080416-1204 --- CHANGES | 2 ++ emu/Nt/os.c | 2 +- include/version.h | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index cb96a15f..41b7a03a 100644 --- a/CHANGES +++ b/CHANGES @@ -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)" -- cgit v1.2.3