about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/comments
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-02-12 14:34:26 +0100
committerSoispha <soispha@vhack.eu>2024-02-12 14:34:26 +0100
commit2d383cf836360e7c23ee90ab3bcff932af771155 (patch)
treec19c9d4c2d366e3da0fdd044d8709e4480ab9069 /sys/nixpkgs/pkgs/comments
parentchore(version): v1.27.3 (diff)
downloadnixos-config-2d383cf836360e7c23ee90ab3bcff932af771155.tar.gz
nixos-config-2d383cf836360e7c23ee90ab3bcff932af771155.zip
fix(sys/nixpkgs/pkgs/comments): Estimate filesize can be > an u32
Diffstat (limited to 'sys/nixpkgs/pkgs/comments')
-rw-r--r--sys/nixpkgs/pkgs/comments/src/info_json.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/comments/src/info_json.rs b/sys/nixpkgs/pkgs/comments/src/info_json.rs
index 70eae738..e7e6209b 100644
--- a/sys/nixpkgs/pkgs/comments/src/info_json.rs
+++ b/sys/nixpkgs/pkgs/comments/src/info_json.rs
@@ -51,7 +51,7 @@ pub struct InfoJson {
     pub protocol: String,
     pub language: Option<String>,
     pub format_note: String,
-    pub filesize_approx: u32,
+    pub filesize_approx: u64,
     pub tbr: f64,
     pub width: u32,
     pub height: u32,