Module: wine Branch: master Commit: eebad6a17aebebecea9dc09f9be4699f0a10e750 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eebad6a17aebebecea9dc09f9b...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Thu Oct 27 17:06:27 2011 +0200
wined3d: Make the device parameter to wined3d_event_query_test() const.
---
dlls/wined3d/query.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wined3d/query.c b/dlls/wined3d/query.c index b26fc26..ae03479 100644 --- a/dlls/wined3d/query.c +++ b/dlls/wined3d/query.c @@ -36,7 +36,7 @@ void wined3d_event_query_destroy(struct wined3d_event_query *query) }
static enum wined3d_event_query_result wined3d_event_query_test(const struct wined3d_event_query *query, - struct wined3d_device *device) + const struct wined3d_device *device) { struct wined3d_context *context; const struct wined3d_gl_info *gl_info;