diff options
author | Brian Paul <[email protected]> | 2012-10-16 18:32:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-10-17 10:13:30 -0600 |
commit | 34a5fd2a39d463c426327a4fe98fc18e1301370d (patch) | |
tree | e8338722d8c781fa4d0ae80a3696e976c8283546 /src/gallium | |
parent | ba7bfdeff2319077cb8a325e701afbbb17fa0073 (diff) |
util: fix MSVC signed/unsigned comparison warning in u_upload_mgr.c code
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_upload_mgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_upload_mgr.c b/src/gallium/auxiliary/util/u_upload_mgr.c index b62973de6cb..ee1c6881ef2 100644 --- a/src/gallium/auxiliary/util/u_upload_mgr.c +++ b/src/gallium/auxiliary/util/u_upload_mgr.c @@ -76,7 +76,7 @@ void u_upload_unmap( struct u_upload_mgr *upload ) { if (upload->transfer) { struct pipe_box *box = &upload->transfer->box; - if (upload->offset > box->x) { + if ((int) upload->offset > box->x) { pipe_buffer_flush_mapped_range(upload->pipe, upload->transfer, box->x, upload->offset - box->x); |