diff options
author | Koichiro IWAO <meta@vmeta.jp> | 2017-07-18 15:36:21 +0900 |
---|---|---|
committer | metalefty <meta@vmeta.jp> | 2017-08-01 08:40:30 +0900 |
commit | 4d14f344fdd30ffe994066bfc34c11777309ab39 (patch) | |
tree | 637ae190ea88907ba749470d20b5470e7b75f731 /common/base64.c | |
parent | b34fc6da55e4dab14e92c08ecb7fc8b60d05c2d2 (diff) | |
download | xrdp-proprietary-4d14f344fdd30ffe994066bfc34c11777309ab39.tar.gz xrdp-proprietary-4d14f344fdd30ffe994066bfc34c11777309ab39.zip |
fix indent, no logic change
Diffstat (limited to 'common/base64.c')
-rw-r--r-- | common/base64.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |