diff options
| author | José Fonseca <jfonseca@vmware.com> | 2009-03-25 21:01:23 +0000 |
|---|---|---|
| committer | José Fonseca <jfonseca@vmware.com> | 2009-03-25 21:01:49 +0000 |
| commit | ce518f4b0f361189957f20ce642afe919da680ba (patch) | |
| tree | f118b2d12f3644f0fc345ce22260d5cbef825605 | |
| parent | 601a6a5839220605e353ea8cb82759b39542f9e5 (diff) | |
wgl: Use right integer type.
| -rw-r--r-- | src/gallium/state_trackers/wgl/shared/stw_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/wgl/shared/stw_device.c b/src/gallium/state_trackers/wgl/shared/stw_device.c index 3c1eb1ad39..c5501727d4 100644 --- a/src/gallium/state_trackers/wgl/shared/stw_device.c +++ b/src/gallium/state_trackers/wgl/shared/stw_device.c @@ -130,7 +130,7 @@ st_cleanup_thread(void) void st_cleanup(void) { - UINT_PTR i; + unsigned i; debug_printf("%s\n", __FUNCTION__); |
