From c185cacad08b37c6f170043dbee640da7c4e3797 Mon Sep 17 00:00:00 2001 From: Emden Gansner Date: Wed, 1 Aug 2012 15:36:10 -0400 Subject: [PATCH] Got the cgraph/graph calls in the wrong order. --- macosx/GVGraph.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/GVGraph.m b/macosx/GVGraph.m index bf305b1c5..b4479bfe3 100644 --- a/macosx/GVGraph.m +++ b/macosx/GVGraph.m @@ -89,9 +89,9 @@ extern char *gvplugin_list(GVC_t * gvc, api_t api, const char *str); ptr = strrchr(parentDir,'/'); *ptr = 0; #ifdef WITH_CGRAPH - agraphattr(_graph,"imagepath",parentDir); -#else agattr(_graph,AGRAPH,"imagepath",parentDir); +#else + agraphattr(_graph,"imagepath",parentDir); #endif } fclose(file); -- 2.50.1