List:Internals« Previous MessageNext Message »
From:Osku Salerma Date:September 27 2005 8:42am
Subject:bk commit into 5.0 tree (osku:1.1996)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of osku. When osku 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.1996 05/09/27 09:42:41 osku@127.(none) +2 -0
  InnoDB: Fix compile warning.

  innobase/trx/trx0trx.c
    1.62 05/09/27 09:42:38 osku@127.(none) +2 -2
    Change trx_set_detailed_error's second argument to const char*.

  innobase/include/trx0trx.h
    1.56 05/09/27 09:42:38 osku@127.(none) +2 -2
    Change trx_set_detailed_error's second argument to const char*.

# 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:	osku
# Host:	127.(none)
# Root:	/home/osku/mysql/5.0/clean

--- 1.55/innobase/include/trx0trx.h	2005-09-23 16:40:53 +03:00
+++ 1.56/innobase/include/trx0trx.h	2005-09-27 09:42:38 +03:00
@@ -61,8 +61,8 @@
 void
 trx_set_detailed_error(
 /*===================*/
-	trx_t*	trx,	/* in: transaction struct */
-	char*	msg);	/* in: detailed error message */
+	trx_t*		trx,	/* in: transaction struct */
+	const char*	msg);	/* in: detailed error message */
 /*****************************************************************
 Set detailed error message for the transaction from a file. Note that the
 file is rewinded before reading from it. */

--- 1.61/innobase/trx/trx0trx.c	2005-09-23 16:22:23 +03:00
+++ 1.62/innobase/trx/trx0trx.c	2005-09-27 09:42:38 +03:00
@@ -58,8 +58,8 @@
 void
 trx_set_detailed_error(
 /*===================*/
-	trx_t*	trx,	/* in: transaction struct */
-	char*	msg)	/* in: detailed error message */
+	trx_t*		trx,	/* in: transaction struct */
+	const char*	msg)	/* in: detailed error message */
 {
 	ut_strlcpy(trx->detailed_error, msg, sizeof(trx->detailed_error));
 }
Thread
bk commit into 5.0 tree (osku:1.1996)Osku Salerma27 Sep