diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-10-17 15:08:45 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-10-17 15:08:45 +0900 |
| commit | 2dc23c1ad84ee756ff678412636ae255e25d9176 (patch) | |
| tree | 687021f4db2c21ff632ec4f7bc524f37f7c852ae | |
| parent | 5a23716c4f10700e9378f66702cd6797475ec30e (diff) | |
win32: Fix missing type
| -rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 9bdc9f8276..9095b1a251 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4781,7 +4781,7 @@ filetime_to_timespec(FILETIME ft, struct timespec *sp) } /* License: Ruby's */ -static const secs_in_ns = 1000000000; +static const long secs_in_ns = 1000000000; /* License: Ruby's */ int |
