We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa62a3 commit c8af60eCopy full SHA for c8af60e
bson/time64.c
@@ -809,11 +809,11 @@ char *ctime64_r( const Time64_T* time, char* result ) {
809
810
/* Non-thread safe versions of the above */
811
struct TM *localtime64(const Time64_T *time) {
812
- #ifdef _MSC_VER
813
- _tzset();
814
- #else
815
- tzset();
816
- #endif
+#ifdef _MSC_VER
+ _tzset();
+#else
+ tzset();
+#endif
817
return localtime64_r(time, &Static_Return_Date);
818
}
819
@@ -826,10 +826,10 @@ char *asctime64( const struct TM* date ) {
826
827
828
char *ctime64( const Time64_T* time ) {
829
830
831
832
833
834
return asctime64(localtime64(time));
835
0 commit comments