| author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-09-27 15:30:23 (GMT) |
|---|---|---|
| committer | Julien Cristau <jcristau@debian.org> | 2009-09-27 22:58:23 (GMT) |
| commit | 78ad6ca9a97440b74019c00a28144ea7d1e03431 (patch) (side-by-side diff) | |
| tree | 72f2b04cd69b3ad9c373c325840a141222dcf334 | |
| parent | fb7938315bed9d4cb5641ee9acebf78a13bc109e (diff) | |
| download | xserver-78ad6ca9a97440b74019c00a28144ea7d1e03431.zip xserver-78ad6ca9a97440b74019c00a28144ea7d1e03431.tar.gz | |
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 b8b00c8..4a99db3 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; |
