From ec667855740993a1c63eb2d2c64b4fc29d95a003 Mon Sep 17 00:00:00 2001
From: Mitya Selivanov <automainint@guattari.tech>
Date: Wed, 6 Sep 2023 03:32:33 +0200
Subject: Update README

---
 source/kit_test/shared.inl.h | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'source')

diff --git a/source/kit_test/shared.inl.h b/source/kit_test/shared.inl.h
index b96897c..f000786 100644
--- a/source/kit_test/shared.inl.h
+++ b/source/kit_test/shared.inl.h
@@ -25,6 +25,7 @@
 static int timespec_get(struct timespec *ts, int base) {
   if (ts == NULL || base != TIME_UTC)
     return 0;
+
   FILETIME       ft;
   ULARGE_INTEGER date;
   LONGLONG       ticks;
@@ -36,6 +37,7 @@ static int timespec_get(struct timespec *ts, int base) {
                       _TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS);
   ts->tv_sec    = ticks / _TIMESPEC_IMPL_TICKS_PER_SECONDS;
   ts->tv_nsec   = (ticks % _TIMESPEC_IMPL_TICKS_PER_SECONDS) * 100;
+
   return base;
 }
 #  endif
-- 
cgit v1.2.3