]> granicus.if.org Git - graphviz/commitdiff
Rename helper functions to access A*info_t structures; avoids conflict with type...
authorEmden R. Gansner <erg@research.att.com>
Tue, 2 Jul 2013 21:04:30 +0000 (17:04 -0400)
committerEmden R. Gansner <erg@research.att.com>
Tue, 2 Jul 2013 21:04:30 +0000 (17:04 -0400)
lib/common/utils.c

index 126cd4ca9313886da19fec1a3d790ba639f068b3..19ed3b4f2bf746b05b99bb578703058adde5f767 100644 (file)
@@ -2127,7 +2127,7 @@ findCluster (Dt_t* map, char* name)
 #endif
 
 #ifdef WITH_CGRAPH
-Agnodeinfo_t* ninfo(Agnode_t* n) {return (Agnodeinfo_t*)AGDATA(n);}
-Agraphinfo_t* ginfo(Agraph_t* g) {return (Agraphinfo_t*)AGDATA(g);}
-Agedgeinfo_t* einfo(Agedge_t* e) {return (Agedgeinfo_t*)AGDATA(e);}
+Agnodeinfo_t* ninf(Agnode_t* n) {return (Agnodeinfo_t*)AGDATA(n);}
+Agraphinfo_t* ginf(Agraph_t* g) {return (Agraphinfo_t*)AGDATA(g);}
+Agedgeinfo_t* einf(Agedge_t* e) {return (Agedgeinfo_t*)AGDATA(e);}
 #endif