Skip to content

Commit

Permalink
Merge pull request #49 from nclack/fix-warnings-1
Browse files Browse the repository at this point in the history
fixing some printf-based warnings
  • Loading branch information
nclack authored Jul 26, 2024
2 parents 7afe044 + c2f9e60 commit 2480a1b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ validate_storage_tiff()
EXPECT(file_size >= 64 * 48 * nframes,
"Expected file to have size at least %d (has size %d): %s",
64 * 48 * nframes,
file_size,
(int)file_size,
file_path.c_str());
}

Expand Down Expand Up @@ -169,7 +169,7 @@ validate_storage_raw()
EXPECT(file_size == (sizeof(VideoFrame) + 64 * 48) * nframes,
"Expected file to have size %d (has size %d): %s",
64 * 48 * nframes,
file_size,
(int)file_size,
file_path.c_str());
}

Expand Down Expand Up @@ -241,4 +241,4 @@ main()

acquire_shutdown(runtime);
return 0;
}
}

0 comments on commit 2480a1b

Please sign in to comment.