diff options
author | vtkachenko@intelp4d.mysql.com <> | 2005-01-03 21:27:17 +0100 |
---|---|---|
committer | vtkachenko@intelp4d.mysql.com <> | 2005-01-03 21:27:17 +0100 |
commit | 4e67fc63100b3c711240677c58712a0c06795d32 (patch) | |
tree | 2fb8a9c6b8a229dd96724bab9b30db6c0c4116f9 /innobase/include/sync0sync.h | |
parent | a9853184d3b69a3802984e0994282dc3a3320296 (diff) | |
download | mariadb-git-4e67fc63100b3c711240677c58712a0c06795d32.tar.gz |
sync0sync.h, sync0rw.h:
Fix Bug#7624
Diffstat (limited to 'innobase/include/sync0sync.h')
-rw-r--r-- | innobase/include/sync0sync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/include/sync0sync.h b/innobase/include/sync0sync.h index 600b12a5385..e9b343ba8a6 100644 --- a/innobase/include/sync0sync.h +++ b/innobase/include/sync0sync.h @@ -37,7 +37,7 @@ location (which must be appropriately aligned). The mutex is initialized in the reset state. Explicit freeing of the mutex with mutex_free is necessary only if the memory block containing it is freed. */ -#define mutex_create(M) mutex_create_func((M), __FILE__, __LINE__, __STRING(M)) +#define mutex_create(M) mutex_create_func((M), __FILE__, __LINE__, #M) /*===================*/ /********************************************************************** Creates, or rather, initializes a mutex object in a specified memory |