diff options
Diffstat (limited to 'src/error_parser.c')
-rw-r--r-- | src/error_parser.c | 5 |
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; } |