diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-10-04 19:56:26 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-10-04 19:56:26 +0000 |
commit | 32c4e2bca7a92a9ab4f0bade10617b0e2ef93404 (patch) | |
tree | f6f2981a9ab31c810fd0e51e0a1dd62837d6c919 /winsup/w32api/include | |
parent | b36289958c0d2882ce029f220932157143f804f9 (diff) | |
download | newlib-32c4e2bca7a92a9ab4f0bade10617b0e2ef93404.zip newlib-32c4e2bca7a92a9ab4f0bade10617b0e2ef93404.tar.gz newlib-32c4e2bca7a92a9ab4f0bade10617b0e2ef93404.tar.bz2 |
Fix incorrect guard added in last commit
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r-- | winsup/w32api/include/shellapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/w32api/include/shellapi.h b/winsup/w32api/include/shellapi.h index 8af1a3f..9fb30bb 100644 --- a/winsup/w32api/include/shellapi.h +++ b/winsup/w32api/include/shellapi.h @@ -52,7 +52,7 @@ extern "C" { #define NIM_DELETE 2 #if (_WIN32_IE >= 0x0500) #define NOTIFYICON_VERSION 3 -#ifdef (_WIN32_WINNT >= 0x600) +#if (_WIN32_WINNT >= 0x600) #define NOTIFYICON_VERSION_4 4 #endif #define NIM_SETFOCUS 3 |