summaryrefslogtreecommitdiff
path: root/src/asdcp-test.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-11 11:23:33 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 16:44:25 +0100
commitd3e793c2fe149fc5dd99afcc8e97fba0302a8b99 (patch)
tree516ceddcd84bbf9ce349c5cdc8c58bf5d0e1e9af /src/asdcp-test.cpp
parent3ac58e7f18a14d9950fcc9fe5c19a3ddc8aed571 (diff)
Fix some comparisons of signed with unsigned.
Diffstat (limited to 'src/asdcp-test.cpp')
-rwxr-xr-xsrc/asdcp-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asdcp-test.cpp b/src/asdcp-test.cpp
index 1b491b0..03181f6 100755
--- a/src/asdcp-test.cpp
+++ b/src/asdcp-test.cpp
@@ -1944,7 +1944,7 @@ main(int argc, const char** argv)
{
result = show_file_info(Options);
- for ( int i = 1; ASDCP_SUCCESS(result) && i < Options.file_count; ++i )
+ for ( ui32_t i = 1; ASDCP_SUCCESS(result) && i < Options.file_count; ++i )
{
Options.filenames[0] = Options.filenames[i]; // oh-so hackish
result = show_file_info(Options);