diff options
author | unknown <tomas@poseidon.> | 2006-12-27 14:16:34 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.> | 2006-12-27 14:16:34 +0100 |
commit | 0968cc9dec13ddc3352eeff73aa8ebb3eecb0213 (patch) | |
tree | df29d7cb0879b8d7b1a8dbb00d360d1a1e4ab082 /sql | |
parent | e5dd5e063a2b291b0169e1efb3be05dcaef36fc7 (diff) | |
download | mariadb-git-0968cc9dec13ddc3352eeff73aa8ebb3eecb0213.tar.gz |
ndb: remove compiler warnings
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_ndbcluster.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index ef9a4e5720a..5614cc3ecd8 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -7337,7 +7337,7 @@ static void print_share(const char* where, NDB_SHARE* share) fprintf(DBUG_FILE, "%s %s.%s: use_count: %u, commit_count: %llu\n", where, share->db, share->table_name, share->use_count, - share->commit_count); + (long long unsigned int) share->commit_count); fprintf(DBUG_FILE, " - key: %s, key_length: %d\n", share->key, share->key_length); |