]> granicus.if.org Git - graphviz/commitdiff
Xlib plugin: squash -Wsign-conversion warnings for 'w' and 'h'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Mar 2022 18:37:22 +0000 (10:37 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 6 Mar 2022 05:28:32 +0000 (21:28 -0800)
plugin/xlib/gvdevice_xlib.c

index 89a59441c46ae50588f54f07ddf889c3e9c713c2..9126b595433b147d94c0e50428647d31c994d67e 100644 (file)
@@ -268,7 +268,6 @@ static void init_window(GVJ_t *job, Display *dpy, int scr)
     uint64_t attributemask = 0;
     char *name;
     window_t *window;
-    int w, h;
     double zoom_to_fit;
 
     window = malloc(sizeof(window_t));
@@ -277,8 +276,8 @@ static void init_window(GVJ_t *job, Display *dpy, int scr)
        return;
     }
 
-    w = 480;    /* FIXME - w,h should be set by a --geometry commandline option */
-    h = 325;
+    unsigned w = 480;    /* FIXME - w,h should be set by a --geometry commandline option */
+    unsigned h = 325;
     
     zoom_to_fit = MIN((double) w / (double) job->width,
                        (double) h / (double) job->height);