diff options
author | unknown <monty@mashka.mysql.fi> | 2003-03-12 01:40:06 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-03-12 01:40:06 +0200 |
commit | fa4f6e89984fd26199f18d4bf5c418b054536ad0 (patch) | |
tree | 1aab264467488d6957c97d78cd61ef06b90ef736 /mysys/my_lib.c | |
parent | 6361cd89fce087510a8addd4ce0523771526d2c8 (diff) | |
download | mariadb-git-fa4f6e89984fd26199f18d4bf5c418b054536ad0.tar.gz |
Simple fixes (nothing notable)
dbug/dbug.c:
Remove duplicate va_end() call
mysql-test/mysql-test-run.sh:
Longer stack trace from valgrind
mysys/my_lib.c:
Fixed wrong dbug printf
sql/slave.cc:
Simple optimization
sql/sql_class.cc:
Added DBUG info
Diffstat (limited to 'mysys/my_lib.c')
-rw-r--r-- | mysys/my_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_lib.c b/mysys/my_lib.c index a06120894c5..035bafd07b9 100644 --- a/mysys/my_lib.c +++ b/mysys/my_lib.c @@ -103,7 +103,7 @@ MY_DIR *my_dir(const char *path, myf MyFlags) char dirent_tmp[sizeof(struct dirent)+_POSIX_PATH_MAX+1]; #endif DBUG_ENTER("my_dir"); - DBUG_PRINT("my",("path: '%s' stat: %d MyFlags: %d",path,MyFlags)); + DBUG_PRINT("my",("path: '%s' MyFlags: %d",path,MyFlags)); #if defined(THREAD) && !defined(HAVE_READDIR_R) pthread_mutex_lock(&THR_LOCK_open); |