From 653076acd46dc435810d2d76c754e588197d9249 Mon Sep 17 00:00:00 2001 From: rfm Date: Fri, 7 Sep 2012 08:21:23 +0000 Subject: [PATCH] quadword number fix git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35538 72102866-910b-0410-8b05-ffd578937521 --- Source/Additions/GSXML.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Additions/GSXML.m b/Source/Additions/GSXML.m index 807b9ff9d..b85d3c93a 100644 --- a/Source/Additions/GSXML.m +++ b/Source/Additions/GSXML.m @@ -4693,14 +4693,14 @@ static void indentation(unsigned level, NSMutableString *str) BOOL compact = [rpc compact]; INDENT(indent); - if (strchr("cCsSiIlL", *t) != 0) + if (strchr("cCsSiIlLqQ", *t) != 0) { int64_t i = [self longLongValue]; if ((i & 0xffffffff) != i) { [NSException raise: NSInternalInconsistencyException - format: @"Can't encode %"PRId64" as i4"]; + format: @"Can't encode %"PRId64" as i4", i]; } if ((i == 0 || i == 1) && (*t == 'c' || *t == 'C')) {