summaryrefslogtreecommitdiffhomepage
path: root/dev/Modules
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-12-25 08:49:10 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-12-25 08:49:24 +0100
commitc517a9192a08f40ec6c2c387e98f3ea18bb28f4e (patch)
tree2e689cfad7f85881d261c8f3d47f74191221aab2 /dev/Modules
parentec23419517078d032187b5b5f204d4c78de8c964 (diff)
IMPL: Set function ptr to null, when uninitialized.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Modules')
-rw-r--r--dev/Modules/FB/AppearanceMgr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/Modules/FB/AppearanceMgr.h b/dev/Modules/FB/AppearanceMgr.h
index fd14e3d3..ca6fff10 100644
--- a/dev/Modules/FB/AppearanceMgr.h
+++ b/dev/Modules/FB/AppearanceMgr.h
@@ -50,7 +50,7 @@ namespace CG
UInt32* w_display_ptr{nullptr};
Bool w_needs_repaint{false};
- Void (*w_display_custom_draw)(struct UIObject* am_win);
+ Void (*w_display_custom_draw)(struct UIObject* am_win){nullptr};
};
typedef struct UIObject UIObject;