List:Commits« Previous MessageNext Message »
From:cpowers Date:April 9 2008 1:40am
Subject:bk commit into 6.0 tree (cpowers:1.2631)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of cpowers.  When cpowers 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, 2008-04-08 18:40:10-05:00, cpowers@stripped +2 -0
  Fixed compiler warnings in StorageHandler.cpp and Cache.cpp

  storage/falcon/Cache.cpp@stripped, 2008-04-08 18:40:08-05:00, cpowers@stripped +1 -1
    Fix compiler warning.

  storage/falcon/StorageHandler.cpp@stripped, 2008-04-08 18:40:08-05:00,
cpowers@stripped +1 -1
    Fix compiler warning.

diff -Nrup a/storage/falcon/Cache.cpp b/storage/falcon/Cache.cpp
--- a/storage/falcon/Cache.cpp	2008-04-08 02:06:46 -05:00
+++ b/storage/falcon/Cache.cpp	2008-04-08 18:40:08 -05:00
@@ -996,7 +996,7 @@ void Cache::analyzeFlush(void)
 	if (!dbb)
 		return;
 	
-	fprintf(traceFile, "-------- time "I64FORMAT" -------\n", database->deltaTime);
+	fprintf(traceFile, "-------- time %ld -------\n", database->deltaTime);
 
 	for (int pageNumber = 0; (pageNumber = flushBitmap->nextSet(pageNumber)) >= 0;)
 		if ( (bdb = findBdb(dbb, pageNumber)) )
diff -Nrup a/storage/falcon/StorageHandler.cpp b/storage/falcon/StorageHandler.cpp
--- a/storage/falcon/StorageHandler.cpp	2008-04-08 02:06:47 -05:00
+++ b/storage/falcon/StorageHandler.cpp	2008-04-08 18:40:08 -05:00
@@ -1175,7 +1175,7 @@ const char* StorageHandler::normalizeNam
 	char *end = buffer + bufferSize - 1;
 	
 	for (const char *p = name; *p && q < end; ++p)
-		if (charTable[*p])
+		if (charTable[(unsigned char)*p])
 			return name;
 		else
 			*q++ = UPPER(*p);
Thread
bk commit into 6.0 tree (cpowers:1.2631)cpowers9 Apr