Corrected line forgotten in last patch to property list serialisation.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22776 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2006-04-09 23:57:36 +00:00
parent a9c7f6bdd1
commit 8e47af0c8d
2 changed files with 6 additions and 1 deletions

View file

@ -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