summaryrefslogtreecommitdiff
path: root/src/storage
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-02-02 14:31:45 -0800
committerMax Kellermann <max@musicpd.org>2020-03-26 17:25:20 +0100
commit608d7ec1e7b2493a369639021e3074fd5a7ae1fa (patch)
treec7664a5ffadc1f84b5849e7c4b46f37d9752b774 /src/storage
parent8474599ed68e549f4863c86ed71f405146d98255 (diff)
[clang-tidy] change integer prefixes to uppercase
Found with readability-uppercase-literal-suffix Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/storage')
-rw-r--r--src/storage/plugins/CurlStorage.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/storage/plugins/CurlStorage.cxx b/src/storage/plugins/CurlStorage.cxx
index 5417dae29..e2bc99bdf 100644
--- a/src/storage/plugins/CurlStorage.cxx
+++ b/src/storage/plugins/CurlStorage.cxx
@@ -266,8 +266,8 @@ public:
CommonExpatParser(ExpatNamespaceSeparator{'|'})
{
request.SetOption(CURLOPT_CUSTOMREQUEST, "PROPFIND");
- request.SetOption(CURLOPT_FOLLOWLOCATION, 1l);
- request.SetOption(CURLOPT_MAXREDIRS, 1l);
+ request.SetOption(CURLOPT_FOLLOWLOCATION, 1L);
+ request.SetOption(CURLOPT_MAXREDIRS, 1L);
request_headers.Append(StringFormat<40>("depth: %u", depth));