summaryrefslogtreecommitdiff
path: root/Libraries/LibProtocol/Download.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-05 18:21:30 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-05 19:13:44 +0100
commit5b7924b9e786d449d12e0df4630f710447b25592 (patch)
treeeff795a8ea7f305ef78028c463fd1aad90e3823b /Libraries/LibProtocol/Download.cpp
parentf6ce24eb48dfc6f9f66e3b7a45920e8a866ee930 (diff)
downloadserenity-5b7924b9e786d449d12e0df4630f710447b25592.zip
LibProtocol: Rename namespace LibProtocol => Protocol
Diffstat (limited to 'Libraries/LibProtocol/Download.cpp')
-rw-r--r--Libraries/LibProtocol/Download.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibProtocol/Download.cpp b/Libraries/LibProtocol/Download.cpp
index 3e4208deae..58ce5e050b 100644
--- a/Libraries/LibProtocol/Download.cpp
+++ b/Libraries/LibProtocol/Download.cpp
@@ -28,7 +28,7 @@
#include <LibProtocol/Client.h>
#include <LibProtocol/Download.h>
-namespace LibProtocol {
+namespace Protocol {
Download::Download(Client& client, i32 download_id)
: m_client(client.make_weak_ptr())