kernel32: Fix typo of i386 macro name in GetLargePageMinimum().
Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
754c681826
commit
7a9b36ca11
|
@ -297,7 +297,7 @@ err:
|
||||||
*/
|
*/
|
||||||
SIZE_T WINAPI GetLargePageMinimum(void)
|
SIZE_T WINAPI GetLargePageMinimum(void)
|
||||||
{
|
{
|
||||||
#if defined(__i386___) || defined(__x86_64__) || defined(__arm__)
|
#if defined(__i386__) || defined(__x86_64__) || defined(__arm__)
|
||||||
return 2 * 1024 * 1024;
|
return 2 * 1024 * 1024;
|
||||||
#endif
|
#endif
|
||||||
FIXME("Not implemented on your platform/architecture.\n");
|
FIXME("Not implemented on your platform/architecture.\n");
|
||||||
|
|
Loading…
Reference in New Issue