summaryrefslogtreecommitdiff
path: root/src/error_parser.c
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-07-13 12:48:54 +0000
committerBryan Ischo <bryan@ischo.com>2008-07-13 12:48:54 +0000
commit77c7ea225a5c977e2590eb1b4e7451d26919b577 (patch)
treed25ddb1a53b3ac3d4b6053213fa2ac57530aa706 /src/error_parser.c
parent56a9e0707d0014327f57a71a0dbb2ec53e79a4c9 (diff)
downloadceph-libs3-77c7ea225a5c977e2590eb1b4e7451d26919b577.tar.gz
* More work in progress; fixed some bugs, initial get object implementation
Diffstat (limited to 'src/error_parser.c')
-rw-r--r--src/error_parser.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/error_parser.c b/src/error_parser.c
index d26bba8..825c1df 100644
--- a/src/error_parser.c
+++ b/src/error_parser.c
@@ -102,8 +102,9 @@ static S3Status errorXmlCallback(const char *elementPath, const char *data,
// Value didn't fit; ignore this one.
return S3StatusOK;
}
- S3NameValue *nv = &(errorParser->extraDetails
- [errorParser->s3ErrorDetails.extraDetailsCount++]);
+ S3NameValue *nv =
+ &(errorParser->extraDetails
+ [errorParser->s3ErrorDetails.extraDetailsCount++]);
nv->name = name;
nv->value = value;
}