diff options
author | Brian Paul <[email protected]> | 2005-09-19 17:17:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-19 17:17:58 +0000 |
commit | a01cb26a90aaa8f631c94d741617715dff89168c (patch) | |
tree | 78edb63da6e45b31c4b647e6df424b8d04db90d5 | |
parent | 26bb7bc0253cf557cbb98f1f0ecaa28e7067e6f5 (diff) |
s/unsigned long/drm_handle_t/ to get compilation of fb driver to work
-rw-r--r-- | src/glx/mini/driver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/mini/driver.h b/src/glx/mini/driver.h index 27402641b73..6e63e7bc4af 100644 --- a/src/glx/mini/driver.h +++ b/src/glx/mini/driver.h @@ -87,9 +87,9 @@ typedef struct DRIDriverContextRec { * the initial handshaking. */ struct { - unsigned long hSAREA; + drm_handle_t hSAREA; int SAREASize; - unsigned long hFrameBuffer; + drm_handle_t hFrameBuffer; int fbOrigin; int fbSize; int fbStride; |