From 73d01dd659f82f2c53fd7cedcf0bbb8d47f70ab2 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 20 May 2007 00:01:06 +0000 Subject: Fix all compiler warnings from various build systems. Fix vsnprintf() implementation to properly handle long and long long ints. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5845 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/screen_xywh.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/screen_xywh.cxx') diff --git a/src/screen_xywh.cxx b/src/screen_xywh.cxx index c38a7ec96..67694ca4c 100644 --- a/src/screen_xywh.cxx +++ b/src/screen_xywh.cxx @@ -201,6 +201,9 @@ void Fl::screen_xywh(int &x, int &y, int &w, int &h, int mx, int my) { } } } +#else + (void)mx; + (void)my; #endif // WIN32 x = Fl::x(); @@ -237,6 +240,8 @@ void Fl::screen_xywh(int &x, int &y, int &w, int &h, int n) { h = screens[n].height; return; } +#else + (void)n; #endif // WIN32 x = Fl::x(); -- cgit v1.2.3