summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibHTTP/Job.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibHTTP/Job.h')
-rw-r--r--Userland/Libraries/LibHTTP/Job.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibHTTP/Job.h b/Userland/Libraries/LibHTTP/Job.h
index eef352410d..27736e78ba 100644
--- a/Userland/Libraries/LibHTTP/Job.h
+++ b/Userland/Libraries/LibHTTP/Job.h
@@ -30,7 +30,7 @@ public:
URL url() const { return m_request.url(); }
HttpResponse* response() { return static_cast<HttpResponse*>(Core::NetworkJob::response()); }
- const HttpResponse* response() const { return static_cast<const HttpResponse*>(Core::NetworkJob::response()); }
+ HttpResponse const* response() const { return static_cast<HttpResponse const*>(Core::NetworkJob::response()); }
protected:
void finish_up();