]> granicus.if.org Git - graphviz/commitdiff
remove debugging fprintf
authorellson <devnull@localhost>
Sat, 30 Jul 2005 17:31:29 +0000 (17:31 +0000)
committerellson <devnull@localhost>
Sat, 30 Jul 2005 17:31:29 +0000 (17:31 +0000)
lib/gvc/gvconfig.c

index 95ca0615be25969196c55ed0955c984386a5f206..b7d52ea485f84a4adec6b22ef44d2dff42c3301c 100644 (file)
@@ -214,16 +214,10 @@ static void gvconfig_plugin_install_builtins(GVC_t * gvc)
     const char *name;
 
     s = lt_preloaded_symbols;
-    while ((name = s->name)) {
-fprintf(stderr,"%s\n",name);
-       if (name[0] == 'g'
-        && name[1] == 'v'
-        && name[2] == 'p'
-        && strstr(name, "_LTX_library")) {
-           gvconfig_plugin_install_from_library(gvc, NULL, (gvplugin_library_t *)(s->address));
-       }
-       s++;
-    }
+    for (s = lt_preloaded_symbols; (name = s->name); s++)
+       if (name[0] == 'g' && strstr(name, "_LTX_library")) 
+           gvconfig_plugin_install_from_library(gvc, NULL,
+                   (gvplugin_library_t *)(s->address));
 }
 
 #ifndef DISABLE_LTDL