From: Brian Date: Thu, 1 Mar 2007 14:42:42 +0000 (-0700) Subject: s/unsigned int/size_t/ (bug 10135) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=887d3c67cbe1f09ec5a816eca859936addb3d3ec;p=mesa.git s/unsigned int/size_t/ (bug 10135) --- diff --git a/progs/tools/trace/gltrace_support.cc b/progs/tools/trace/gltrace_support.cc index a557cb32d84..b188e73f29e 100644 --- a/progs/tools/trace/gltrace_support.cc +++ b/progs/tools/trace/gltrace_support.cc @@ -35,7 +35,7 @@ namespace { { static char buf[4096]; int status; - unsigned int length = sizeof(buf)-1; + size_t length = sizeof(buf)-1; memset (buf, 0, sizeof(buf));