diff options
author | Egbert Eich <eich@suse.de> | 2004-07-30 20:51:09 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-07-30 20:51:09 +0000 |
commit | 40b975e3acb11c1ec2fd4c5984f5efa20b669489 (patch) | |
tree | 6ee7027e7f74b996568f1eae2bc39bcedd39cebb /hw/xfree86/vbe | |
parent | 7643199de1c4f12a2aadeaf2d539a37ddb45672b (diff) |
Improved error messages.
build fixes for AMD64.
Made shm* functions in the libc_wrapper more standard conformant by setting
errno correctly.
Use xf86ExendedInitInt10() in VBEExtendedInit() to be able to pass flags.
Diffstat (limited to 'hw/xfree86/vbe')
-rw-r--r-- | hw/xfree86/vbe/vbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/vbe/vbe.c b/hw/xfree86/vbe/vbe.c index a8203e910..0513b8758 100644 --- a/hw/xfree86/vbe/vbe.c +++ b/hw/xfree86/vbe/vbe.c @@ -67,7 +67,7 @@ VBEExtendedInit(xf86Int10InfoPtr pInt, int entityIndex, int Flags) goto error; xf86DrvMsg(screen,X_INFO,"initializing int10\n"); - pInt = xf86InitInt10(entityIndex); + pInt = xf86ExtendedInitInt10(entityIndex,Flags); if (!pInt) goto error; init_int10 = TRUE; |