Skip to content

Commit

Permalink
Fix const type
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenvh1 committed Jan 20, 2025
1 parent 1294231 commit aaaf67a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rrdp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ use crate::xml::decode::{Content, Error as XmlError, Reader, Name};

//------------ Maximum XML sizes ---------------------------------------------

const MAX_FILE_SIZE: u128 = 100_000_000;
const MAX_HEADER_SIZE: u128 = 1_000_000;
const MAX_FILE_SIZE: u64 = 100_000_000;
const MAX_HEADER_SIZE: u64 = 1_000_000;

//------------ NotificationFile ----------------------------------------------

Expand Down

0 comments on commit aaaf67a

Please sign in to comment.