From ecc75cd0e1d15bb750933ec8b2c2b559171779d0 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 2 Apr 2007 18:46:38 +0000 Subject: [PATCH] fix gcc warning --- panda/src/display/windowProperties.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/display/windowProperties.I b/panda/src/display/windowProperties.I index a5682ab0e8..c86cb0b204 100644 --- a/panda/src/display/windowProperties.I +++ b/panda/src/display/windowProperties.I @@ -831,7 +831,7 @@ has_parent_window() const { INLINE void WindowProperties:: clear_parent_window() { _specified &= ~S_parent_window; - _parent_window=NULL; + _parent_window = (size_t)NULL; }