Remove never used code -- libmtp is not used on Windows.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21227 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2009-06-08 22:33:36 +00:00
parent 72e7b99f78
commit 20a78a36f3

View file

@ -104,11 +104,8 @@ static int progress(uint64_t const sent, uint64_t const total,
(void)data;
int percent = (sent * 100) / total;
#ifdef __WIN32__
printf("Progress: %I64u of %I64u (%d%%)\r", sent, total, percent);
#else
printf("Progress: %"PRIu64" of %"PRIu64" (%d%%)\r", sent, total, percent);
#endif
fflush(stdout);
return 0;
}