]> granicus.if.org Git - graphviz/commitdiff
fix type cast warning
authorellson <devnull@localhost>
Fri, 7 Sep 2007 11:44:41 +0000 (11:44 +0000)
committerellson <devnull@localhost>
Fri, 7 Sep 2007 11:44:41 +0000 (11:44 +0000)
lib/gvc/gvrender.c

index bbb4350d78bc16c67684ded0c28255fcf18a9999..e3ddf82736109b127ce0f1c4ca8035f95ab057c4 100644 (file)
@@ -83,7 +83,7 @@ int gvrender_select(GVJ_t * job, char *str)
     if (plugin) {
         typeptr = plugin->typeptr;
         job->render.engine = (gvrender_engine_t *) (typeptr->engine);
-        job->render.features = (gvdevice_features_t *) (typeptr->features);
+        job->render.features = (gvrender_features_t *) (typeptr->features);
 
         if (job->device.engine)
             job->render.id = typeptr->id;