Skip to content

Commit

Permalink
Merge pull request #30 from trofi/nix-2.25
Browse files Browse the repository at this point in the history
dwarffs.cc: port to nix-2.25 (`ignoreException` rename)
  • Loading branch information
edolstra authored Dec 2, 2024
2 parents 8198868 + d85f990 commit 09f5b6d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dwarffs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ static int dwarffs_getattr(const char * path_, struct stat * stbuf)
return res;

} catch (std::exception & e) {
ignoreException();
ignoreExceptionExceptInterrupt();
return -EIO;
}
}
Expand Down Expand Up @@ -375,7 +375,7 @@ static int dwarffs_open(const char * path_, struct fuse_file_info * fi)
return 0;

} catch (std::exception & e) {
ignoreException();
ignoreExceptionExceptInterrupt();
return -EIO;
}
}
Expand Down Expand Up @@ -417,7 +417,7 @@ static int dwarffs_read(const char * path_, char * buf, size_t size, off_t offse
return -ENOENT;

} catch (std::exception & e) {
ignoreException();
ignoreExceptionExceptInterrupt();
return -EIO;
}
}
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "A filesystem that fetches DWARF debug info from the Internet on demand";

inputs.nix.url = "https://flakehub.com/f/NixOS/nix/2.20.tar.gz";
inputs.nix.url = "https://flakehub.com/f/NixOS/nix/2.25.tar.gz";
inputs.nixpkgs.follows = "nix/nixpkgs";

outputs = { self, nix, nixpkgs }:
Expand Down

0 comments on commit 09f5b6d

Please sign in to comment.