From: José Fonseca Date: Mon, 30 Mar 2009 16:09:03 +0000 (+0100) Subject: python: Force unsigned comparison. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af25470a5430c68e157489ff095baa5d548d8783;p=mesa.git python: Force unsigned comparison. --- diff --git a/src/gallium/state_trackers/python/p_texture.i b/src/gallium/state_trackers/python/p_texture.i index b97d1889737..47bcd4ba3c6 100644 --- a/src/gallium/state_trackers/python/p_texture.i +++ b/src/gallium/state_trackers/python/p_texture.i @@ -84,7 +84,7 @@ { struct st_surface *surface; - if(face >= ($self->target == PIPE_TEXTURE_CUBE ? 6 : 1)) + if(face >= ($self->target == PIPE_TEXTURE_CUBE ? 6U : 1U)) SWIG_exception(SWIG_ValueError, "face out of bounds"); if(level > $self->last_level) SWIG_exception(SWIG_ValueError, "level out of bounds");