From 1202e8bf87ea4d1058b425a26c630b085c9d160a Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Wed, 15 Aug 2012 10:26:48 +0200 Subject: [PATCH] msvcp90: Use streamoff in std::_BADOFF definition. --- dlls/msvcp90/msvcp90_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/msvcp90_main.c b/dlls/msvcp90/msvcp90_main.c index 18a2514eebc..9981e953b2f 100644 --- a/dlls/msvcp90/msvcp90_main.c +++ b/dlls/msvcp90/msvcp90_main.c @@ -104,11 +104,11 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) /* ?_BADOFF@std@@3JB -> long const std::_BADOFF */ /* ?_BADOFF@std@@3_JB -> __int64 const std::_BADOFF */ -const INT_PTR std_BADOFF = -1; +const streamoff std_BADOFF = -1; /* ?_BADOFF_func@std@@YAABJXZ -> long const & __cdecl std::_BADOFF_func(void) */ /* ?_BADOFF_func@std@@YAAEB_JXZ -> __int64 const & __ptr64 __cdecl std::_BADOFF_func(void) */ -const INT_PTR * __cdecl std_BADOFF_func(void) +const streamoff * __cdecl std_BADOFF_func(void) { return &std_BADOFF; }