From 99edcca55b3b8b1d144bdeb32c4d98c8ee13bf34 Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 22 Nov 2019 09:18:24 -0500 Subject: [PATCH] Add missing linefeeds. --- src/storage/s3/storage.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/storage/s3/storage.c b/src/storage/s3/storage.c index b950f29f2..446bb6452 100644 --- a/src/storage/s3/storage.c +++ b/src/storage/s3/storage.c @@ -360,7 +360,8 @@ storageS3Request( { strCat(error, "\n*** Response Headers ***:"); - for (unsigned int responseHeaderIdx = 0; responseHeaderIdx < strLstSize(responseHeaderList); responseHeaderIdx++) + for (unsigned int responseHeaderIdx = 0; responseHeaderIdx < strLstSize(responseHeaderList); + responseHeaderIdx++) { const String *key = strLstGet(responseHeaderList, responseHeaderIdx); strCatFmt(error, "\n%s: %s", strPtr(key), strPtr(httpHeaderGet(responseHeader, key))); @@ -378,7 +379,8 @@ storageS3Request( { // On success move the buffer to the calling context result.httpClient = httpClient; - result.responseHeader = httpHeaderMove(httpHeaderDup(httpClientResponseHeader(httpClient), NULL), MEM_CONTEXT_OLD()); + result.responseHeader = httpHeaderMove( + httpHeaderDup(httpClientResponseHeader(httpClient), NULL), MEM_CONTEXT_OLD()); result.response = bufMove(response, MEM_CONTEXT_OLD()); }