From 394b4d23cb675689aa962ebffd47bd8c384d9232 Mon Sep 17 00:00:00 2001 From: Stu Black Date: Fri, 5 Sep 2025 02:05:04 -0400 Subject: [PATCH] Add forgotten `use std::ptr`. --- wmakerlib/src/application.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/wmakerlib/src/application.rs b/wmakerlib/src/application.rs index e646e429..c67da280 100644 --- a/wmakerlib/src/application.rs +++ b/wmakerlib/src/application.rs @@ -24,6 +24,7 @@ pub struct Application { pub mod ffi { use super::Application; use std::ffi::{c_int, c_void}; + use std::ptr; #[unsafe(no_mangle)] pub unsafe extern "C" fn wApplicationGetMainWindow(app: *mut Application) -> x11::xlib::Window {