Fix silly typo

This commit is contained in:
Dianne Skoll
2025-08-11 22:26:48 -04:00
parent a66ca7cce7
commit c7c58e20f3

View File

@@ -441,7 +441,7 @@ int DoRem(ParsePtr p)
}
JSONLinesEmitted++;
FromDSE(dse, &y, &m, &d);
printf("{\"date\":\"%04d-%02d-%02d\",", y, m+d, d);
printf("{\"date\":\"%04d-%02d-%02d\",", y, m+1, d);
PrintJSONKeyPairString("filename", GetCurrentFilename());
PrintJSONKeyPairInt("lineno", LineNo);
if (LineNoStart != LineNo) {