From 4d14f344fdd30ffe994066bfc34c11777309ab39 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Tue, 18 Jul 2017 15:36:21 +0900 Subject: [PATCH] fix indent, no logic change --- common/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/base64.c b/common/base64.c index 4c177f49..55f92401 100644 --- a/common/base64.c +++ b/common/base64.c @@ -73,7 +73,7 @@ base64_decode(char *dst, const char *src, size_t len) /* if input is corrupt, return empty string */ if (estimated_decoded_bytes != decoded_bytes) { - g_strncpy(dst, "", sizeof("")); + g_strncpy(dst, "", sizeof("")); } return dst;