mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-09 07:28:42 +02:00
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>
This commit is contained in:
parent
f11b8c955c
commit
65041c4a19
3 changed files with 3 additions and 5 deletions
|
|
@ -189,9 +189,9 @@ 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");
|
||||
|
||||
if (drmGetStats(fd, &prev)) return;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue