List:Internals« Previous MessageNext Message »
From:Joerg Bruehe Date:July 18 2005 11:52am
Subject:bk commit into 4.1 tree (joerg:1.2339)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of joerg. When joerg 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.2339 05/07/18 13:52:18 joerg@stripped +1 -0
  QNX does not know "uint", so the cast is rewritten as "unsigned int".

  cmd-line-utils/libedit/read.c
    1.7 05/07/18 13:52:14 joerg@stripped +1 -1
    QNX does not know "uint", so the cast is rewritten as "unsigned int".

# 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:	joerg
# Host:	trift2.
# Root:	/M41/mysql-4.1

--- 1.6/cmd-line-utils/libedit/read.c	2005-04-21 12:06:38 +02:00
+++ 1.7/cmd-line-utils/libedit/read.c	2005-07-18 13:52:14 +02:00
@@ -478,7 +478,7 @@
 #endif /* DEBUG_READ */
 			break;
 		}
-		if ((uint)cmdnum >= el->el_map.nfunc) {	/* BUG CHECK command */
+		if ((unsigned int)cmdnum >= el->el_map.nfunc) {	/* BUG CHECK command */
 #ifdef DEBUG_EDIT
 			(void) fprintf(el->el_errfile,
 			    "ERROR: illegal command from key 0%o\r\n", ch);
Thread
bk commit into 4.1 tree (joerg:1.2339)Joerg Bruehe18 Jul