Commit bb8ebe16 authored by unknown's avatar unknown

InnoDB: Fix compile warning.


innobase/include/trx0trx.h:
  Change trx_set_detailed_error's second argument to const char*.
innobase/trx/trx0trx.c:
  Change trx_set_detailed_error's second argument to const char*.
parent 5e73c1cf
...@@ -61,8 +61,8 @@ Set detailed error message for the transaction. */ ...@@ -61,8 +61,8 @@ Set detailed error message for the transaction. */
void void
trx_set_detailed_error( trx_set_detailed_error(
/*===================*/ /*===================*/
trx_t* trx, /* in: transaction struct */ trx_t* trx, /* in: transaction struct */
char* msg); /* in: detailed error message */ const char* msg); /* in: detailed error message */
/***************************************************************** /*****************************************************************
Set detailed error message for the transaction from a file. Note that the Set detailed error message for the transaction from a file. Note that the
file is rewinded before reading from it. */ file is rewinded before reading from it. */
......
...@@ -58,8 +58,8 @@ Set detailed error message for the transaction. */ ...@@ -58,8 +58,8 @@ Set detailed error message for the transaction. */
void void
trx_set_detailed_error( trx_set_detailed_error(
/*===================*/ /*===================*/
trx_t* trx, /* in: transaction struct */ trx_t* trx, /* in: transaction struct */
char* msg) /* in: detailed error message */ const char* msg) /* in: detailed error message */
{ {
ut_strlcpy(trx->detailed_error, msg, sizeof(trx->detailed_error)); ut_strlcpy(trx->detailed_error, msg, sizeof(trx->detailed_error));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment