diff options
author | Kent Boortz <kent.boortz@sun.com> | 2009-11-25 16:48:29 +0100 |
---|---|---|
committer | Kent Boortz <kent.boortz@sun.com> | 2009-11-25 16:48:29 +0100 |
commit | e55e76d2ddb1c5282522defa396919f8c6d1dbc7 (patch) | |
tree | 2655335f1cdf668b2e9fc6849a658547b27cc67d /mysys/my_sync.c | |
parent | 8022ff5cf5835d91278307cc1f92a48238084fbd (diff) | |
download | mariadb-git-e55e76d2ddb1c5282522defa396919f8c6d1dbc7.tar.gz |
Move DBG_* macros to after the variable declaration section in a
block, might expand to function calls (Bug#48331)
Diffstat (limited to 'mysys/my_sync.c')
-rw-r--r-- | mysys/my_sync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_sync.c b/mysys/my_sync.c index ba6964b00d6..97540f5eb48 100644 --- a/mysys/my_sync.c +++ b/mysys/my_sync.c @@ -103,11 +103,11 @@ static const char cur_dir_name[]= {FN_CURLIB, 0}; int my_sync_dir(const char *dir_name, myf my_flags) { #ifdef NEED_EXPLICIT_SYNC_DIR - DBUG_ENTER("my_sync_dir"); - DBUG_PRINT("my",("Dir: '%s' my_flags: %d", dir_name, my_flags)); File dir_fd; int res= 0; const char *correct_dir_name; + DBUG_ENTER("my_sync_dir"); + DBUG_PRINT("my",("Dir: '%s' my_flags: %d", dir_name, my_flags)); /* Sometimes the path does not contain an explicit directory */ correct_dir_name= (dir_name[0] == 0) ? cur_dir_name : dir_name; /* |