Skip to content

Commit

Permalink
Fix invalid format warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Jan 26, 2016
1 parent 71b3906 commit c76ab94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion storage/innobase/include/fil0fil.ic
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ fil_page_type_validate(

/* Dump out the page info */
fprintf(stderr, "InnoDB: Space %lu offset %lu name %s page_type %lu page_type_name %s\n"
"InnoDB: key_version %u page_compressed %d page_compressed_encrypted %d lsn %lu compressed_len %lu\n",
"InnoDB: key_version %u page_compressed %d page_compressed_encrypted %d lsn %llu compressed_len %lu\n",
space, offset, rspace->name, page_type, fil_get_page_type_name(page_type),
key_version, page_compressed, page_compressed_encrypted, lsn, compressed_len);
fflush(stderr);
Expand Down
2 changes: 1 addition & 1 deletion storage/xtradb/include/fil0fil.ic
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ fil_page_type_validate(

/* Dump out the page info */
fprintf(stderr, "InnoDB: Space %lu offset %lu name %s page_type %lu page_type_name %s\n"
"InnoDB: key_version %u page_compressed %d page_compressed_encrypted %d lsn %lu compressed_len %lu\n",
"InnoDB: key_version %u page_compressed %d page_compressed_encrypted %d lsn %llu compressed_len %lu\n",
space, offset, rspace->name, page_type, fil_get_page_type_name(page_type),
key_version, page_compressed, page_compressed_encrypted, lsn, compressed_len);
fflush(stderr);
Expand Down

0 comments on commit c76ab94

Please sign in to comment.