mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
72e7b99f78
commit
20a78a36f3
1 changed files with 1 additions and 4 deletions
|
@ -104,11 +104,8 @@ static int progress(uint64_t const sent, uint64_t const total,
|
||||||
(void)data;
|
(void)data;
|
||||||
|
|
||||||
int percent = (sent * 100) / total;
|
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);
|
printf("Progress: %"PRIu64" of %"PRIu64" (%d%%)\r", sent, total, percent);
|
||||||
#endif
|
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue