Skip to content

Commit

Permalink
Cast to silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
DerrickWood committed Feb 12, 2015
1 parent d8c879e commit 04cdc51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/db_shrink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ int main(int argc, char **argv) {

if (Output_count > key_count) {
errx(EX_DATAERR, "Requested new key count %llu larger than old key count %llu, aborting...",
Output_count, key_count);
(long long unsigned int) Output_count,
(long long unsigned int) key_count);
}

// Change key count
Expand Down

0 comments on commit 04cdc51

Please sign in to comment.