$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80576 - trunk/boost/interprocess/detail
From: igaztanaga_at_[hidden]
Date: 2012-09-18 12:44:03
Author: igaztanaga
Date: 2012-09-18 12:44:02 EDT (Tue, 18 Sep 2012)
New Revision: 80576
URL: http://svn.boost.org/trac/boost/changeset/80576
Log:
Fixed return value for get_file_type, according to winapi GetFileType
Text files modified: 
   trunk/boost/interprocess/detail/win32_api.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/interprocess/detail/win32_api.hpp
==============================================================================
--- trunk/boost/interprocess/detail/win32_api.hpp	(original)
+++ trunk/boost/interprocess/detail/win32_api.hpp	2012-09-18 12:44:02 EDT (Tue, 18 Sep 2012)
@@ -1037,7 +1037,7 @@
       , duplicate_same_access);
 }
 
-inline long get_file_type(void *hFile)
+inline unsigned long get_file_type(void *hFile)
 {
    return GetFileType(hFile);
 }