summaryrefslogtreecommitdiffstats
path: root/libc/netbsd/net/base64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/netbsd/net/base64.c')
-rw-r--r--libc/netbsd/net/base64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/netbsd/net/base64.c b/libc/netbsd/net/base64.c
index 70caaf7..7270703 100644
--- a/libc/netbsd/net/base64.c
+++ b/libc/netbsd/net/base64.c
@@ -141,7 +141,7 @@ b64_ntop(src, srclength, target, targsize)
size_t targsize;
{
size_t datalength = 0;
- u_char input[3];
+ u_char input[3] = { 0, 0, 0 }; /* make compiler happy */
u_char output[4];
size_t i;