Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit dbbcb74

Browse files
Merge branch 'main' into specialisations
2 parents 0521af9 + 628a08c commit dbbcb74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/btrfs-progs/dump-csum.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ index c19e664a..8d491c8f 100644
4949
DECLARE_COMMAND(send);
5050
diff --git a/cmds/inspect-dump-csum.c b/cmds/inspect-dump-csum.c
5151
new file mode 100644
52-
index 00000000..6ee5ed61
52+
index 00000000..8e607e51
5353
--- /dev/null
5454
+++ b/cmds/inspect-dump-csum.c
5555
@@ -0,0 +1,243 @@
@@ -269,13 +269,13 @@ index 00000000..6ee5ed61
269269
+
270270
+ fd = open(filename, O_RDONLY);
271271
+ if (fd < 0) {
272-
+ error("cannot open file %s:%m", filename);
272+
+ error("cannot open file %s: %m", filename);
273273
+ return -errno;
274274
+ }
275275
+
276276
+ devfd = open(device, O_RDONLY);
277277
+ if (devfd < 0) {
278-
+ error("cannot open device %s:%m", device);
278+
+ error("cannot open device %s: %m", device);
279279
+ ret = -errno;
280280
+ goto out_close;
281281
+ }

0 commit comments

Comments
 (0)