From e01a7e2e91486c1ed7998d5f0ee90c1f8f30667d Mon Sep 17 00:00:00 2001 From: smatz Date: Thu, 17 Jan 2008 18:21:31 +0000 Subject: (svn r11903) -Fix: try to fix MorphOS compilation --- src/signal.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/signal.cpp b/src/signal.cpp index 6c529125b..f45e1370e 100644 --- a/src/signal.cpp +++ b/src/signal.cpp @@ -28,7 +28,8 @@ enum { SIG_GLOB_UPDATE = 64, ///< how many items need to be in _globset to force update }; -assert_compile(SIG_GLOB_UPDATE <= SIG_GLOB_SIZE); +/* need to typecast to compile with MorphOS */ +assert_compile((int)SIG_GLOB_UPDATE <= (int)SIG_GLOB_SIZE); /** incidating trackbits with given enterdir */ static const TrackBitsByte _enterdir_to_trackbits[DIAGDIR_END] = { -- cgit v1.2.3-54-g00ecf