From d3e793c2fe149fc5dd99afcc8e97fba0302a8b99 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 11 Jan 2016 11:23:33 +0000 Subject: Fix some comparisons of signed with unsigned. --- src/asdcp-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/asdcp-test.cpp') 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); -- cgit v1.2.3