diff options
author | unknown <thek@adventure.(none)> | 2007-05-23 13:04:49 +0200 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2007-05-23 13:04:49 +0200 |
commit | 7f35d66d79f3376e07b84f8aa5b76ac7d83f66f1 (patch) | |
tree | f7e9fb402d5b58bea9d5d13b4658ff3f4a1a5e04 /sql/sql_cache.cc | |
parent | 3807b25ef4e2830323748baa192c4da8836e64c9 (diff) | |
download | mariadb-git-7f35d66d79f3376e07b84f8aa5b76ac7d83f66f1.tar.gz |
- Corrected type misstake in debug statement.
Diffstat (limited to 'sql/sql_cache.cc')
-rw-r--r-- | sql/sql_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cache.cc b/sql/sql_cache.cc index 926faa3f474..1ae0e861313 100644 --- a/sql/sql_cache.cc +++ b/sql/sql_cache.cc @@ -632,7 +632,7 @@ void query_cache_insert(NET *net, const char *packet, ulong length) DUMP(&query_cache); BLOCK_LOCK_WR(query_block); - DBUG_PRINT("qcache", ("insert parequestedcket %lu bytes long",length)); + DBUG_PRINT("qcache", ("insert packet %lu bytes long",length)); /* On success STRUCT_UNLOCK(&query_cache.structure_guard_mutex) will be |