Commit 2708fc8f authored by Yoni Fogel's avatar Yoni Fogel

Windows port, changed long long to int64_t in logfilemanager

git-svn-id: file:///svn/toku/tokudb@14387 c7de825b-a66e-492c-adef-691d508d4ae1
parent 9b719bce
......@@ -165,7 +165,7 @@ void toku_logfilemgr_print(TOKULOGFILEMGR lfm) {
int i;
struct lfm_entry *entry = lfm->first;
for (i=0;i<lfm->n_entries;i++) {
printf(" entry %d : index = %lld, maxlsn = %lu\n", i, entry->lf_info->index, entry->lf_info->maxlsn.lsn);
printf(" entry %d : index = %"PRId64", maxlsn = %"PRIu64"\n", i, entry->lf_info->index, entry->lf_info->maxlsn.lsn);
entry = entry->next;
}
}
......@@ -9,7 +9,7 @@
// this is the basic information we need to keep per logfile
struct toku_logfile_info {
long long index;
int64_t index;
LSN maxlsn;
};
typedef struct toku_logfile_info *TOKULOGFILEINFO;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment