On Wed, May 23, 2007 at 04:35:33PM +0900, Dmitry Timoshkov wrote:
Hello,
Changelog: basetsd.h: Fix a typo in the parameter name.
include/basetsd.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/basetsd.h b/include/basetsd.h index e0d04f6..fe3639f 100644 --- a/include/basetsd.h +++ b/include/basetsd.h @@ -219,7 +219,7 @@ typedef unsigned short UHALF_PTR, *PUHALF_PTR; #define HandleToULong(h) ((ULONG)(ULONG_PTR)(h)) #define HandleToLong(h) ((LONG)(LONG_PTR)(h)) #define ULongToHandle(ul) ((HANDLE)(ULONG_PTR)(ul)) -#define LongToHandle(h) ((HANDLE)(LONG_PTR)(h)) +#define LongToHandle(h) ((HANDLE)(LONG_PTR)(l))
I do not think this is right.
Ciao, Marcus