From 0983073e25acd805f14435fe3efa686f32678081 Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 3 Jul 2009 09:02:31 +0000 Subject: [PATCH] Fix compiler warning --- panda/src/downloadertools/multify.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/downloadertools/multify.cxx b/panda/src/downloadertools/multify.cxx index c8c935735f..da33f6cc0d 100644 --- a/panda/src/downloadertools/multify.cxx +++ b/panda/src/downloadertools/multify.cxx @@ -545,14 +545,14 @@ list_files(int argc, char *argv[]) { } if (ratio > 1.0) { printf("%12d worse %c %s %s\n", - multifile->get_subfile_length(i), + (int)multifile->get_subfile_length(i), encrypted_symbol, format_timestamp(multifile->get_record_timestamp(), multifile->get_subfile_timestamp(i)), subfile_name.c_str()); } else { printf("%12d %3.0f%% %c %s %s\n", - multifile->get_subfile_length(i), + (int)multifile->get_subfile_length(i), 100.0 - ratio * 100.0, encrypted_symbol, format_timestamp(multifile->get_record_timestamp(), multifile->get_subfile_timestamp(i)), @@ -560,7 +560,7 @@ list_files(int argc, char *argv[]) { } } else { printf("%12d %c %s %s\n", - multifile->get_subfile_length(i), + (int)multifile->get_subfile_length(i), encrypted_symbol, format_timestamp(multifile->get_record_timestamp(), multifile->get_subfile_timestamp(i)),