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>
main
Jan Vesely 2015-02-27 11:51:05 -05:00
parent f11b8c955c
commit 65041c4a19
3 changed files with 3 additions and 5 deletions

View File

@ -189,7 +189,7 @@ static void printhuman(unsigned long value, const char *name, int mult)
static void getstats(int fd, int i)
{
drmStatsT prev, curr;
int j;
unsigned j;
double rate;
printf(" System statistics:\n");

View File

@ -45,8 +45,6 @@ int main(int argc, char **argv)
ret = ioctl(fd, DRM_IOCTL_GET_STATS, &stats);
assert(ret == 0);
assert(stats.count >= 0);
close(fd);
return 0;
}

View File

@ -76,7 +76,7 @@ static inline int DRM_IOCTL(int fd, unsigned long cmd, void *arg)
* Util functions
*/
void* drmAllocCpy(void *array, int count, int entry_size)
static void* drmAllocCpy(char *array, int count, int entry_size)
{
char *r;
int i;