aboutsummaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-12-27 17:35:49 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-12-27 17:35:49 +0300
commitf53db2892e5af9841b0b19e6a5fea96fb2f8ebf8 (patch)
tree5b002bee8fc3848a98a07cab86291aa1154930d0 /doc/examples
parentb5315c24cc9e6df8bc46f69b065a0a9c976f9676 (diff)
downloadlibmicrohttpd-f53db2892e5af9841b0b19e6a5fea96fb2f8ebf8.tar.gz
libmicrohttpd-f53db2892e5af9841b0b19e6a5fea96fb2f8ebf8.zip
Muted compiler warnings
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/tlsauthentication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/tlsauthentication.c b/doc/examples/tlsauthentication.c
index ca8187bc..5b2dec1d 100644
--- a/doc/examples/tlsauthentication.c
+++ b/doc/examples/tlsauthentication.c
@@ -54,7 +54,7 @@ string_to_base64 (const char *message)
54 } 54 }
55 55
56 if (length % 3) 56 if (length % 3)
57 strncat (tmp, "===", 3 - length % 3); 57 strncat (tmp, "==", 3 - length % 3);
58 58
59 return tmp; 59 return tmp;
60} 60}