Skip to content
This repository was archived by the owner on Mar 2, 2020. It is now read-only.

Fix deprecated libc integer types #172

Merged
merged 2 commits into from
Jun 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ftl/memory_model/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub struct FtlQuery {
/// Saved in units of 1/10 milliseconds (1 = 0.1ms, 2 = 0.2ms,
/// 2500 = 250.0ms, etc.)
pub response_time: libc::c_ulong,
pub database_id: libc::int64_t,
pub database_id: i64,
pub time_index: libc::c_uint,
pub is_complete: bool
}
Expand Down