List:Commits« Previous MessageNext Message »
From:tim Date:March 29 2007 3:49am
Subject:bk commit into 5.0 tree (tsmith:1.2430)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of tsmith. When tsmith 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@stripped, 2007-03-28 19:49:30-06:00, tsmith@stripped +1 -0
  Fix warning on Windows

  sql/log.cc@stripped, 2007-03-28 19:49:25-06:00, tsmith@stripped +2 -2
    Change print_buffer_to_nt_eventlog() to take size_t instead of int/uint for buffer
sizes

# 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:	tsmith
# Host:	siva.hindu.god
# Root:	/home/tsmith/m/bk/maint/50

--- 1.208/sql/log.cc	2007-03-28 17:50:01 -06:00
+++ 1.209/sql/log.cc	2007-03-28 19:49:25 -06:00
@@ -2296,7 +2296,7 @@ void MYSQL_LOG::signal_update()
 
 #ifdef __NT__
 static void print_buffer_to_nt_eventlog(enum loglevel level, char *buff,
-                                        uint length, int buffLen)
+                                        size_t length, size_t buffLen)
 {
   HANDLE event;
   char   *buffptr= buff;
@@ -2390,7 +2390,7 @@ static void print_buffer_to_file(enum lo
 void vprint_msg_to_log(enum loglevel level, const char *format, va_list args)
 {
   char   buff[1024];
-  uint length;
+  size_t length;
   DBUG_ENTER("vprint_msg_to_log");
 
   length= my_vsnprintf(buff, sizeof(buff), format, args);
Thread
bk commit into 5.0 tree (tsmith:1.2430)tim29 Mar