Procházet zdrojové kódy

time_zone: Swap subtraction order

lat9nq před 3 roky
rodič
revize
9e0d6f7d54
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/common/time_zone.cpp

+ 1 - 1
src/common/time_zone.cpp

@@ -53,7 +53,7 @@ std::chrono::seconds GetCurrentOffsetSeconds() {
     // gmt_seconds is a different offset than time(nullptr)
     // gmt_seconds is a different offset than time(nullptr)
     const auto gmt_seconds = TmSpecToSeconds(gmt);
     const auto gmt_seconds = TmSpecToSeconds(gmt);
     const auto local_seconds = TmSpecToSeconds(local);
     const auto local_seconds = TmSpecToSeconds(local);
-    const auto seconds_offset = gmt_seconds - local_seconds;
+    const auto seconds_offset = local_seconds - gmt_seconds;
 
 
     return std::chrono::seconds{seconds_offset};
     return std::chrono::seconds{seconds_offset};
 }
 }