diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-09-27 17:30:23 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2009-09-28 00:58:23 +0200 |
commit | 78ad6ca9a97440b74019c00a28144ea7d1e03431 (patch) | |
tree | 72f2b04cd69b3ad9c373c325840a141222dcf334 | |
parent | fb7938315bed9d4cb5641ee9acebf78a13bc109e (diff) |
xfree86: Hurd fix
I hadn't paid attention that the parameters order had changed, here is a
trivial patch, please apply.
Signed-off-by: Julien Cristau <jcristau@debian.org>
-rw-r--r-- | hw/xfree86/os-support/hurd/hurd_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/os-support/hurd/hurd_video.c b/hw/xfree86/os-support/hurd/hurd_video.c index b8b00c892..4a99db375 100644 --- a/hw/xfree86/os-support/hurd/hurd_video.c +++ b/hw/xfree86/os-support/hurd/hurd_video.c @@ -42,7 +42,7 @@ * Video Memory Mapping section ***************************************************************************/ static pointer -mapVidMem(int ScreenNum,int Flags, unsigned long Base, unsigned long Size) +mapVidMem(int ScreenNum, unsigned long Base, unsigned long Size, int Flags) { mach_port_t device,iopl_dev; memory_object_t iopl_mem; |