aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Vesely2015-02-27 10:51:05 -0600
committerJan Vesely2015-03-14 16:02:06 -0500
commit65041c4a19bc6d1cc86f768259b9e0888af0bd5f (patch)
tree59f620723f2b32e1028c9608ec510bafe73a2f70 /tests/dristat.c
parentf11b8c955c270dc4030de58529f2016daa4b91f7 (diff)
downloadexternal-libdrm-65041c4a19bc6d1cc86f768259b9e0888af0bd5f.tar.gz
external-libdrm-65041c4a19bc6d1cc86f768259b9e0888af0bd5f.tar.xz
external-libdrm-65041c4a19bc6d1cc86f768259b9e0888af0bd5f.zip
Fix type-limits, pointer-arith and sign-compare warnings
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> Reviewed-by: Emil Velikov <eil.l.velikov@gmail.com>
Diffstat (limited to 'tests/dristat.c')
-rw-r--r--tests/dristat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dristat.c b/tests/dristat.c
index 449aa242..992ceb40 100644
--- a/tests/dristat.c
+++ b/tests/dristat.c
@@ -189,9 +189,9 @@ static void printhuman(unsigned long value, const char *name, int mult)
189static void getstats(int fd, int i) 189static void getstats(int fd, int i)
190{ 190{
191 drmStatsT prev, curr; 191 drmStatsT prev, curr;
192 int j; 192 unsigned j;
193 double rate; 193 double rate;
194 194
195 printf(" System statistics:\n"); 195 printf(" System statistics:\n");
196 196
197 if (drmGetStats(fd, &prev)) return; 197 if (drmGetStats(fd, &prev)) return;