From c155a70fad1bc6d08b7bf065bcf97cf5dce5a7d1 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Wed, 2 Sep 2020 09:57:45 +0200 Subject: [PATCH] minor code formatting change --- requester.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requester.cpp b/requester.cpp index 7cc85a3..6bc8299 100644 --- a/requester.cpp +++ b/requester.cpp @@ -24,9 +24,9 @@ size_t requester::write_data(char *buf, size_t sz, size_t nmemb, void *user_data } requester::requester() { - curl_global_init(CURL_GLOBAL_ALL); - _h = curl_easy_init(); - curl_easy_setopt(_h, CURLOPT_WRITEFUNCTION, write_data); + curl_global_init(CURL_GLOBAL_ALL); + _h = curl_easy_init(); + curl_easy_setopt(_h, CURLOPT_WRITEFUNCTION, write_data); } std::string requester::get(const std::string &url) {