From 61522196c71593da09572fce9af9e0d7dad61bc3 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Tue, 23 Apr 2013 09:44:36 +0000 Subject: * Merge in cygwin-64bit-branch. --- winsup/cygwin/cygserver.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'winsup/cygwin/cygserver.h') diff --git a/winsup/cygwin/cygserver.h b/winsup/cygwin/cygserver.h index b549ed006..8bcc271f3 100644 --- a/winsup/cygwin/cygserver.h +++ b/winsup/cygwin/cygserver.h @@ -1,6 +1,6 @@ /* cygserver.h - Copyright 2001, 2002, 2003, 2004, 2008 Red Hat Inc. + Copyright 2001, 2002, 2003, 2004, 2008, 2012, 2013 Red Hat Inc. Written by Egor Duda @@ -61,7 +61,7 @@ protected: union { request_code_t request_code; - ssize_t error_code; + int error_code; }; header_t () {}; @@ -80,8 +80,8 @@ public: request_code_t request_code () const { return _header.request_code; } - ssize_t error_code () const { return _header.error_code; }; - void error_code (ssize_t error_code) { _header.error_code = error_code; }; + int error_code () const { return _header.error_code; }; + void error_code (int error_code) { _header.error_code = error_code; }; size_t msglen () const { return _header.msglen; }; void msglen (size_t len) { _header.msglen = len; }; -- cgit v1.2.3