From 6f5047110f68a792be258cf58b7a50cea5594ae2 Mon Sep 17 00:00:00 2001 From: niansa Date: Wed, 29 Apr 2020 16:43:41 +0200 Subject: [PATCH] Fixed typo --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index f8abdb9..a592531 100644 --- a/main.cpp +++ b/main.cpp @@ -280,7 +280,7 @@ std::string get_post_desc(std::string post_url) { long statuscode = curlreq(httpcontent, server_sid, post_url); // Check statuscode if (statuscode != 200) { - panic("Request to download post had a unexpected result: "+std::to_string(statuscode)); + panic("Request to download post had an unexpected result: "+std::to_string(statuscode)); } // Parse post post_document = gumbo_parse(httpcontent.str().c_str());