Navigation Menu

Skip to content

Commit

Permalink
mysql57: reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 14, 2015
1 parent 58dbed2 commit 60914f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mrn_mysql_compat.h
Expand Up @@ -142,14 +142,14 @@
#endif

#ifdef MRN_HAVE_PSI_MEMORY_KEY
# define mrn_my_strndup(string, size, flags) \
my_strndup(mrn_memory_key, string, size, flags)
# define mrn_my_malloc(size, flags) \
my_malloc(mrn_memory_key, size, flags)
# define mrn_my_strndup(string, size, flags) \
my_strndup(mrn_memory_key, string, size, flags)
#else
# define mrn_my_malloc(size, flags) my_malloc(size, flags)
# define mrn_my_strndup(string, size, flags) \
my_strndup(string, size, flags)
# define mrn_my_malloc(size, flags) my_malloc(size, flags)
#endif

#if MYSQL_VERSION_ID >= 50706 && !defined(MRN_MARIADB_P)
Expand Down

0 comments on commit 60914f5

Please sign in to comment.