summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/http_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Dropbox/src/http_request.h')
-rw-r--r--plugins/Dropbox/src/http_request.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Dropbox/src/http_request.h b/plugins/Dropbox/src/http_request.h
index 6fa8816c93..7a4bd11bb0 100644
--- a/plugins/Dropbox/src/http_request.h
+++ b/plugins/Dropbox/src/http_request.h
@@ -69,7 +69,7 @@ protected:
char cPair[128];
mir_snprintf(
cPair,
- SIZEOF(cPair),
+ _countof(cPair),
"%s:%s",
szLogin,
szPassword);
@@ -79,7 +79,7 @@ protected:
char value[128];
mir_snprintf(
value,
- SIZEOF(value),
+ _countof(value),
"Basic %s",
ePair);
@@ -96,7 +96,7 @@ protected:
char value[128];
mir_snprintf(
value,
- SIZEOF(value),
+ _countof(value),
"Bearer %s",
szValue);