summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-09-23 15:03:39 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-09-24 16:16:30 +0200
commit0fc1f6686886e1122757d5cee17e401ece8178bb (patch)
tree28c57dfa5ec3ec0df61b464465dfba04bb4f1917 /common
parentec3183754ead692ee40bdf2887fe65914de1ed7f (diff)
downloadqtlocation-mapboxgl-0fc1f6686886e1122757d5cee17e401ece8178bb.tar.gz
whitespace fixes
Diffstat (limited to 'common')
-rw-r--r--common/http_request_baton_cocoa.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/http_request_baton_cocoa.mm b/common/http_request_baton_cocoa.mm
index eaf75ad4d1..32b824b7f4 100644
--- a/common/http_request_baton_cocoa.mm
+++ b/common/http_request_baton_cocoa.mm
@@ -37,8 +37,8 @@ void HTTPRequestBaton::start() {
struct tm *timeinfo;
char buffer[32];
const time_t modified = response->modified;
- timeinfo = std::gmtime (&modified);
- strftime_l(buffer, 32 ,"%a, %d %b %Y %H:%M:%S GMT", timeinfo, locale);
+ timeinfo = std::gmtime(&modified);
+ strftime_l(buffer, 32, "%a, %d %b %Y %H:%M:%S GMT", timeinfo, locale);
[request addValue:@(buffer) forHTTPHeaderField:@"If-Modified-Since"];
}