Below is the list of changes that have just been committed into a local
5.0 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@stripped, 2007-01-19 11:58:29+01:00, joerg@trift2. +1 -0
cmd-line-utils/readline/undo.c : Replace an "uint" cast by the expanded "unsigned int" (compile problem on QNX).
cmd-line-utils/readline/undo.c@stripped, 2007-01-19 11:58:26+01:00, joerg@trift2. +1 -1
Replace an "uint" cast by the expanded "unsigned int",
because there are platforms (QNX) on which "uint" is not defined in the "readline" library
(and so building it failed, version 5.0.34).
# 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: /MySQL/M50/tmp-5.0
--- 1.10/cmd-line-utils/readline/undo.c 2007-01-19 11:58:37 +01:00
+++ 1.11/cmd-line-utils/readline/undo.c 2007-01-19 11:58:37 +01:00
@@ -175,7 +175,7 @@
for (rl = rl_undo_list; rl; rl = rl->next)
{
- if (rl->what == (uint) type)
+ if (rl->what == (unsigned int) type)
{
rl->start = start;
rl->end = end;
| Thread |
|---|
| • bk commit into 5.0 tree (joerg:1.2392) | Joerg Bruehe | 19 Jan |