diff options
Diffstat (limited to 'storage/xtradb/row/row0mysql.cc')
-rw-r--r-- | storage/xtradb/row/row0mysql.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/xtradb/row/row0mysql.cc b/storage/xtradb/row/row0mysql.cc index 47075c6cbc8..5e7ff6e910b 100644 --- a/storage/xtradb/row/row0mysql.cc +++ b/storage/xtradb/row/row0mysql.cc @@ -3320,17 +3320,17 @@ fil_wait_crypt_bg_threads( time_t now = time(0); if (now >= last + 30) { fprintf(stderr, - "WARNING: waited " TIMETPF " seconds " + "WARNING: waited %ld seconds " "for ref-count on table: %s space: %u\n", - now - start, table->name, table->space); + (long)(now - start), table->name, table->space); last = now; } if (now >= start + 300) { fprintf(stderr, - "WARNING: after " TIMETPF " seconds, gave up waiting " + "WARNING: after %ld seconds, gave up waiting " "for ref-count on table: %s space: %u\n", - now - start, table->name, table->space); + (long)(now - start), table->name, table->space); break; } } |