From c5d0ff600b48e565fabe7a84c01f99409aee0c69 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 10 Feb 2010 12:48:21 +0000 Subject: [PATCH] Fixed typo --- include/osg/Notify | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/Notify b/include/osg/Notify index d81847420..ac110a559 100644 --- a/include/osg/Notify +++ b/include/osg/Notify @@ -75,10 +75,10 @@ extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity); inline std::ostream& notify(void) { return notify(osg::INFO); } -#define OSG_NOTIFY(level) if (level>isNotifyEnabled(level)) osg::notify(level) +#define OSG_NOTIFY(level) if (isNotifyEnabled(level)) osg::notify(level) #if _DEBUG - #define OSG_DEBUG_NOTIFY(level) if (level>isNotifyEnabled(level)) osg::notify(level) + #define OSG_DEBUG_NOTIFY(level) if (isNotifyEnabled(level)) osg::notify(level) #else // when using an optimized build use if (false) to tell the compiler to ignore the rest of the notify. #define OSG_DEBUG_NOTIFY(level) if (false) osg::notify(level)