summaryrefslogtreecommitdiff
path: root/src/ladmin/ladmin.cpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-04-06 17:25:56 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-04-09 17:38:28 -0700
commit756085f91d0f01c69550735cf2e60cae54d9c72a (patch)
tree4aa08505fe01fbb7265e5798d86355229b4b5e93 /src/ladmin/ladmin.cpp
parent9c13169778f55eec42fde14e12b2cc3c2f601c4e (diff)
downloadtmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.gz
tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.bz2
tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.xz
tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.zip
Native amd64 support
Diffstat (limited to 'src/ladmin/ladmin.cpp')
-rw-r--r--src/ladmin/ladmin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ladmin/ladmin.cpp b/src/ladmin/ladmin.cpp
index 1af83e1..e28286e 100644
--- a/src/ladmin/ladmin.cpp
+++ b/src/ladmin/ladmin.cpp
@@ -1760,9 +1760,9 @@ int changememo(const char *param)
if (strlen(memo) > 254)
{
- PRINTF("Memo is too long (%d characters).\n", strlen(memo));
+ PRINTF("Memo is too long (%zu characters).\n", strlen(memo));
PRINTF("Please input a memo of 254 bytes at the maximum.\n");
- LADMIN_LOG("Email is too long (%d characters). Please input a memo of 254 bytes at the maximum.\n",
+ LADMIN_LOG("Email is too long (%zu characters). Please input a memo of 254 bytes at the maximum.\n",
strlen(memo));
return 102;
}