From: north Date: Sat, 26 Jan 2008 00:46:43 +0000 (+0000) Subject: Fixed stupid bug where nondefault attributes were not being written properly. X-Git-Tag: LAST_LIBGRAPH~32^2~4810 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b62882f78de2f8bddbba1eda5227c5796cddb7e8;p=graphviz Fixed stupid bug where nondefault attributes were not being written properly. --- diff --git a/lib/agraph/agraph.h b/lib/agraph/agraph.h index 16d99ad27..8a30ec163 100644 --- a/lib/agraph/agraph.h +++ b/lib/agraph/agraph.h @@ -81,7 +81,7 @@ for a given node or edges, there is only one unique ID (per main graph). */ struct Agtag_s { unsigned objtype:2; /* see literal tags below */ unsigned mtflock:1; /* move-to-front lock, see above */ - unsigned attrwf:1; /* attrs written (parity, write.c) */ + unsigned attrwf:1; /* non-default attrs written */ unsigned seq:(sizeof(unsigned) * 8 - 6); /* sequence no. */ unsigned long id; /* client ID */ };