summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--talpid-core/src/firewall/system_state.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-core/src/firewall/system_state.rs b/talpid-core/src/firewall/system_state.rs
index bf99b9f79f..88b5acc6f2 100644
--- a/talpid-core/src/firewall/system_state.rs
+++ b/talpid-core/src/firewall/system_state.rs
@@ -3,11 +3,11 @@
//! reboots
use std::fs;
use std::io;
-use std::path::{Path, PathBuf};
-use std::slice;
+use std::path::Path;
/// This struct is responsible for saving a binary blob to disk. The binary blob is intended to
/// store system state that should be resotred when the security policy is reset.
+#[repr(C)]
pub struct SystemStateWriter {
/// Full path to the system state backup file
pub backup_path: Box<Path>,