fix syntax issue on msvc

This commit is contained in:
Lyon 2023-08-01 19:59:18 +08:00
parent 0a6f6c3cb2
commit cd520911d7
2 changed files with 2 additions and 2 deletions

View File

@ -2464,7 +2464,7 @@ Arg* arg_strAddIndentMulti(Arg* aStrInMuti, int indent) {
char* sLine = NULL;
int iLineNum = strGetLineNum(sStrInMuti);
Arg* aStrOut = arg_newStr("");
Args buffs = {};
Args buffs = {0};
for (int i = 0; i < iLineNum; i++) {
sLine = strsPopLine(&buffs, &sStrInMuti);
Arg* aLine = arg_newStr(sLine);

View File

@ -2,4 +2,4 @@
#define PIKA_VERSION_MINOR 12
#define PIKA_VERSION_MICRO 4
#define PIKA_EDIT_TIME "2023/08/01 19:43:54"
#define PIKA_EDIT_TIME "2023/08/01 19:59:06"