LibC: Fix a indentation problem in time.cpp

This commit is contained in:
howar6hill 2020-03-06 20:07:06 +08:00 committed by Andreas Kling
parent a6c53cadc8
commit 4ba206b7e5
Notes: sideshowbarker 2024-07-19 17:37:36 +09:00

View file

@ -304,7 +304,7 @@ size_t strftime(char* destination, size_t max_size, const char* format, const st
}
}
if (builder.length() > max_size - 1)
return 0;
return 0;
}
strcpy(destination, builder.build().characters());