Line 0
Link Here
|
|
|
1 |
diff --git a/cosmic-screenshot-1.0.0.alpha.1-cargo/vendor/libc/src/unix/linux_like/linux/arch/generic/mod.rs b/cosmic-screenshot-1.0.0.alpha.1-cargo/vendor/libc/src/unix/linux_like/linux/arch/generic/mod.rs |
2 |
index b8e4596..83f97fb 100644 |
3 |
--- a/cosmic-screenshot-1.0.0.alpha.1-cargo/vendor/libc/src/unix/linux_like/linux/arch/generic/mod.rs |
4 |
+++ b/cosmic-screenshot-1.0.0.alpha.1-cargo/vendor/libc/src/unix/linux_like/linux/arch/generic/mod.rs |
5 |
@@ -227,7 +227,11 @@ cfg_if! { |
6 |
pub const FS_IOC32_SETFLAGS: ::Ioctl = 0x40046602; |
7 |
pub const FS_IOC32_GETVERSION: ::Ioctl = 0x80047601; |
8 |
pub const FS_IOC32_SETVERSION: ::Ioctl = 0x40047602; |
9 |
- } else if #[cfg(any(target_arch = "x86_64", target_arch = "riscv64", target_arch = "aarch64", target_arch = "s390x"))] { |
10 |
+ } else if #[cfg(any(target_arch = "x86_64", |
11 |
+ target_arch = "riscv64", |
12 |
+ target_arch = "aarch64", |
13 |
+ target_arch = "s390x", |
14 |
+ target_arch = "loongarch64"))] { |
15 |
pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80086601; |
16 |
pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40086602; |
17 |
pub const FS_IOC_GETVERSION: ::Ioctl = 0x80087601; |
18 |
|