List:Commits« Previous MessageNext Message »
From:Sergey Vojtovich Date:June 15 2006 10:38am
Subject:bk commit into 5.0 tree (svoj:1.2133) BUG#12982
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of svoj. When svoj does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2133 06/06/15 13:38:32 svoj@stripped +1 -0
  Fixed windows compilation failure introduced by fix for BUG#12982.

  include/my_global.h
    1.119 06/06/15 13:38:26 svoj@stripped +1 -1
    Remove cast to ssize_t, since there is no ssize_t type on Windows.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	svoj
# Host:	may.pils.ru
# Root:	/home/svoj/devel/mysql/BUG12982/mysql-5.0

--- 1.118/include/my_global.h	2006-06-07 19:44:37 +05:00
+++ 1.119/include/my_global.h	2006-06-15 13:38:26 +05:00
@@ -737,7 +737,7 @@ typedef SOCKET_SIZE_TYPE size_socket;
 #define FLT_MAX		((float)3.40282346638528860e+38)
 #endif
 #ifndef SSIZE_MAX
-#define SSIZE_MAX (ssize_t)((~((size_t) 0)) / 2)
+#define SSIZE_MAX ((~((size_t) 0)) / 2)
 #endif
 
 #if !defined(HAVE_ISINF) && !defined(isinf)
Thread
bk commit into 5.0 tree (svoj:1.2133) BUG#12982Sergey Vojtovich15 Jun