diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-05-03 22:22:19 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-09-29 21:00:25 +0900 |
| commit | 1179c86384bb6211d45bf721651b100dca1fb53e (patch) | |
| tree | 6b7b2509e49f84da2cdbd1add98f89b469b98a96 | |
| parent | 65a0795c3f92be5bff27211600cf3a832ab43b2f (diff) | |
win32/sspi: Already Fixnum has been removed years ago
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11722
| -rw-r--r-- | ext/win32/lib/win32/sspi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/win32/lib/win32/sspi.rb b/ext/win32/lib/win32/sspi.rb index 20205fd4d6..9dbd4377a4 100644 --- a/ext/win32/lib/win32/sspi.rb +++ b/ext/win32/lib/win32/sspi.rb @@ -204,7 +204,7 @@ module Win32 def ==(other) if other.is_a?(SSPIResult) @value == other.value - elsif other.is_a?(Fixnum) + elsif other.is_a?(Integer) @value == @@map[other] else false |
