Author: dquintana
Date: Sun Nov 2 20:13:56 2014
New Revision: 65193
URL:
http://svn.reactos.org/svn/reactos?rev=65193&view=rev
Log:
[SHELL32]
* Fix GCC build.
Modified:
branches/shell-experiments/dll/win32/shell32/shlview.cpp
Modified: branches/shell-experiments/dll/win32/shell32/shlview.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/shell-experiments/dll/win32/she…
==============================================================================
--- branches/shell-experiments/dll/win32/shell32/shlview.cpp [iso-8859-1] (original)
+++ branches/shell-experiments/dll/win32/shell32/shlview.cpp [iso-8859-1] Sun Nov 2
20:13:56 2014
@@ -2261,7 +2261,7 @@
TRACE("(%p)->(%u), stub\n", this, ViewMode);
/* It's not redundant to check FVM_AUTO because it's a (UINT)-1 */
- if ((ViewMode < FVM_FIRST || ViewMode > FVM_LAST) && (ViewMode !=
FVM_AUTO))
+ if (((INT)ViewMode < FVM_FIRST || (INT)ViewMode > FVM_LAST) &&
((INT)ViewMode != FVM_AUTO))
return E_INVALIDARG;
/* Windows before Vista uses LVM_SETVIEW and possibly