diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2018-06-10 21:45:05 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2018-06-10 21:45:05 +0300 |
commit | e5a3d24b876a266c67b9a6f4390ae31435ec746d (patch) | |
tree | d72c81b0943d28c17a22756f20112cde86519adb /storage | |
parent | 719ed09e5e96b53467ede331631de641f98a348f (diff) | |
download | mariadb-git-e5a3d24b876a266c67b9a6f4390ae31435ec746d.tar.gz |
Followup for make TokuDB compile with GCC-8
Missed printfs from: 21246066b296bd9c6e44272a8f93cb7dc73ea43c
Diffstat (limited to 'storage')
-rw-r--r-- | storage/tokudb/PerconaFT/ft/ft-ops.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/tokudb/PerconaFT/ft/ft-ops.cc b/storage/tokudb/PerconaFT/ft/ft-ops.cc index d7ea5efdff5..eb8696423ca 100644 --- a/storage/tokudb/PerconaFT/ft/ft-ops.cc +++ b/storage/tokudb/PerconaFT/ft/ft-ops.cc @@ -826,7 +826,7 @@ int toku_ftnode_fetch_callback(CACHEFILE UU(cachefile), __FILE__, __LINE__, toku_cachefile_fname_in_env(cachefile), - blocknum.b); + (longlong)blocknum.b); } else { fprintf( stderr, @@ -836,7 +836,7 @@ int toku_ftnode_fetch_callback(CACHEFILE UU(cachefile), __FILE__, __LINE__, toku_cachefile_fname_in_env(cachefile), - blocknum.b, + (longlong)blocknum.b, r); } // make absolutely sure we crash before doing anything else. |