From e3ce6cd15a1e2aa9ebf1c242f0ffa6ab424ca496 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 13 Apr 2005 16:32:52 +0000 Subject: Cast GetCurrentProcessId to int to avoid compiler warning. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4277 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- fluid/undo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluid/undo.cxx b/fluid/undo.cxx index c0590f78e..77a2f2f31 100644 --- a/fluid/undo.cxx +++ b/fluid/undo.cxx @@ -33,7 +33,7 @@ #if defined(WIN32) && !defined(__CYGWIN__) # include # include -# define getpid GetCurrentProcessId +# define getpid (int)GetCurrentProcessId #else # include #endif // WIN32 && !__CYGWIN__ -- cgit v1.2.3