OSDN Git Service

Fix gcc -Wextra warnings
authorJan Vesely <jan.vesely@rutgers.edu>
Sun, 30 Nov 2014 17:53:18 +0000 (12:53 -0500)
committerJan Vesely <jan.vesely@rutgers.edu>
Tue, 10 Feb 2015 20:25:28 +0000 (15:25 -0500)
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
Reviewed-by: Ian Romanick <idr@freedesktop.org>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
tests/vbltest/vbltest.c
xf86drm.c
xf86drmMode.c

index cdc1ef6..6e13c57 100644 (file)
@@ -104,7 +104,8 @@ static void usage(char *name)
 
 int main(int argc, char **argv)
 {
-       int i, c, fd, ret;
+       unsigned i;
+       int c, fd, ret;
        char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "exynos", "omapdrm", "tilcdc", "msm", "tegra" };
        drmVBlank vbl;
        drmEventContext evctx;
index 345325a..fb673b5 100644 (file)
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -303,7 +303,7 @@ static int chown_check_return(const char *path, uid_t owner, gid_t group)
  * special file node with the major and minor numbers specified by \p dev and
  * parent directory if necessary and was called by root.
  */
-static int drmOpenDevice(long dev, int minor, int type)
+static int drmOpenDevice(dev_t dev, int minor, int type)
 {
     stat_t          st;
     const char      *dev_name;
@@ -2213,7 +2213,7 @@ int drmGetClient(int fd, int idx, int *auth, int *pid, int *uid,
 int drmGetStats(int fd, drmStatsT *stats)
 {
     drm_stats_t s;
-    int         i;
+    unsigned    i;
 
     if (drmIoctl(fd, DRM_IOCTL_GET_STATS, &s))
        return -errno;
index 60ce369..e3e599b 100644 (file)
@@ -854,7 +854,7 @@ int drmHandleEvent(int fd, drmEventContextPtr evctx)
        len = read(fd, buffer, sizeof buffer);
        if (len == 0)
                return 0;
-       if (len < sizeof *e)
+       if (len < (int)sizeof *e)
                return -1;
 
        i = 0;