diff --git a/ChangeLog b/ChangeLog index 2b23f6d02..5d796847f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-10 Fred Kiefer + + * Source/NSPropertyList.m (BinaryPLGenerator - storeCount:): + Corrected line forgotten when applying last patch. + 2006-04-04 Richard Frith-Macdonald * Source/Additions/GSXML.m: ([GSSAXHandler-dealloc]) fix memory leak. diff --git a/Source/NSPropertyList.m b/Source/NSPropertyList.m index 55fde04fb..a96aefa11 100644 --- a/Source/NSPropertyList.m +++ b/Source/NSPropertyList.m @@ -3304,7 +3304,7 @@ GSPropertyListMake(id obj, NSDictionary *loc, BOOL xml, code = 0x11; [dest appendBytes: &code length: 1]; c = count; - NSSwapHostShortToBig(c); + c = NSSwapHostShortToBig(c); [dest appendBytes: &c length: 2]; } else