Skip to content

Commit

Permalink
Merge pull request #15 from NoisyCoil/fix-serde-timeval
Browse files Browse the repository at this point in the history
Fix timeval on 32-bit systems - serde feature
  • Loading branch information
arcnmx committed Aug 19, 2024
2 parents 28ab728 1795d16 commit 3954796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 20,8 @@ timeval
#[serde(remote = "timeval")]
#[allow(dead_code)]
struct TimevalDef {
tv_sec: i64,
tv_usec: i64,
tv_sec: time_t,
tv_usec: suseconds_t,
}

impl EventTime {
Expand Down

0 comments on commit 3954796

Please sign in to comment.