This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch master in repository wine.
commit 7dca3d139cd52a3d0906c284465d4061fa4e7b17 Author: Austin English <[email protected]> Date: Fri Jun 17 03:46:34 2016 -0500 kernel32: Implement GetLargePageMinimum for arm. Signed-off-by: Austin English <[email protected]> Signed-off-by: André Hentschel <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> --- dlls/kernel32/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c index 3a7a5e8..72a9d13 100644 --- a/dlls/kernel32/cpu.c +++ b/dlls/kernel32/cpu.c @@ -297,7 +297,7 @@ err: */ SIZE_T WINAPI GetLargePageMinimum(void) { -#if defined(__i386___) || defined(__x86_64__) +#if defined(__i386___) || defined(__x86_64__) || defined(__arm__) return 2 * 1024 * 1024; #endif FIXME("Not implemented on your platform/architecture.\n"); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
