Skip to content

Commit

Permalink
Make eventrecordid 64 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
TCatshoek committed Nov 23, 2023
1 parent a22e9b0 commit aa68f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Args {
struct FullLogData {
datetime: String,
message: String,
eventrecordid: u32,
eventrecordid: u64,
}

// Columns read from the novelty file
Expand All @@ -51,7 +51,7 @@ struct LogData {
timestamp_str: String,
message: String,
novelty_score: f32,
eventrecordid: u32
eventrecordid: u64
}

named_tuple!(
Expand Down

0 comments on commit aa68f2f

Please sign in to comment.