Skip to content

Commit

Permalink
fix compat_mode check typo (#421)
Browse files Browse the repository at this point in the history
Authors:
  - Mads R. B. Kristensen (https://github.com/madsbk)

Approvers:
  - Lawrence Mitchell (https://github.com/wence-)

URL: #421
  • Loading branch information
madsbk authored Jul 25, 2024
1 parent 89fd81a commit d0f3406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/kvikio/file_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class FileHandle {
_initialized{true},
_compat_mode{compat_mode}
{
if (!_compat_mode) {
if (_compat_mode) {
return; // Nothing to do in compatibility mode
}

Expand Down

0 comments on commit d0f3406

Please sign in to comment.