From: ellson Date: Tue, 5 Apr 2005 02:24:08 +0000 (+0000) Subject: split out the dot layout engine into its own plugin. X-Git-Tag: LAST_LIBGRAPH~32^2~7747 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36ee98e6e8ad9139dcb658741fe2745090be7752;p=graphviz split out the dot layout engine into its own plugin. --- diff --git a/lib/gvc/gvconfig.c b/lib/gvc/gvconfig.c index 735f6a844..ceb0fb744 100644 --- a/lib/gvc/gvconfig.c +++ b/lib/gvc/gvconfig.c @@ -159,7 +159,7 @@ void gvconfig(GVC_t * gvc) rc = stat(libdir, &libdir_st); if (rc == -1) { /* if we fail to stat it then it probably doesn't exist - so just fail silently, clean up and return */ + so just fail silently */ return; } @@ -187,7 +187,6 @@ void gvconfig(GVC_t * gvc) strcat(config_glob, plugin_glob); rc = glob(config_glob, GLOB_NOSORT, NULL, &globbuf); - if (rc == 0) { for (j = 0; j < globbuf.gl_pathc; j++) { library = gvplugin_library_load(globbuf.gl_pathv[j]); @@ -202,7 +201,6 @@ void gvconfig(GVC_t * gvc) /* might as well install it since its already loaded */ gvplugin_install(gvc, apis->api, types[i].type, types[i].quality, library->name, &types[i]); - fprintf(f, "\t\t%s %d\n", types[i].type, types[i].quality); }