summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/unionfs/files/unionfs-1.0.13-amd64.patch')
-rw-r--r--sys-fs/unionfs/files/unionfs-1.0.13-amd64.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys-fs/unionfs/files/unionfs-1.0.13-amd64.patch b/sys-fs/unionfs/files/unionfs-1.0.13-amd64.patch
new file mode 100644
index 000000000000..f88b76e03164
--- /dev/null
+++ b/sys-fs/unionfs/files/unionfs-1.0.13-amd64.patch
@@ -0,0 +1,21 @@
+diff -Naur unionfs-1.0.13_orig/unionimap.c unionfs-1.0.13/unionimap.c
+--- unionfs-1.0.13_orig/unionimap.c 2005-07-22 18:16:48.000000000 +0100
++++ unionfs-1.0.13/unionimap.c 2005-08-17 18:01:10.000000000 +0100
+@@ -244,7 +244,7 @@
+ "Lower-Level");
+ while (read(file, (void *)&entry, sizeof(struct fmapent))) {
+ fprintf(stdout, "%-11lu %-8d %-22llu\n", inode++,
+- entry.fsnum, entry.inode);
++ entry.fsnum, (long long unsigned int) entry.inode);
+ }
+ }
+ out:
+@@ -293,7 +293,7 @@
+ unsigned long lowerlevel = 0;
+ if (inode) {
+ fprintf(stdout, "%-11lu %-22llu\n",
+- lowerlevel++, inode);
++ lowerlevel++, (long long unsigned int) inode);
+ }
+ }
+ }