From 4552c9c33e4c0e1a3216e098fa05308e261d1783 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Tue, 10 Aug 2021 23:14:45 -0700 Subject: [PATCH] Windows: Fix MSVC build --- src/feature/updater.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/feature/updater.c b/src/feature/updater.c index e67777473..21c4aa146 100644 --- a/src/feature/updater.c +++ b/src/feature/updater.c @@ -41,7 +41,7 @@ static void _updateUpdate(struct mUpdate* update, const char* item, const char* } static void _updateList(const char* key, const char* value, void* user) { - char channel[64] = {}; + char channel[64] = {0}; const char* dotLoc; if (strncmp("medusa.", key, 7) == 0) { dotLoc = strchr(&key[7], '.');