Remove an unused variable.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17243 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2008-04-24 20:21:47 +00:00
parent 45786ca7fd
commit 35f41e666d

View file

@ -54,7 +54,6 @@ void usage(void)
int sendfile_function(char *from_path)
{
printf("Sending %s\n", from_path);
char *filename;
uint64_t filesize;
#ifdef __USE_LARGEFILE64
struct stat64 sb;
@ -82,7 +81,6 @@ int sendfile_function(char *from_path)
#else
filesize = (uint64_t) sb.st_size;
#endif
filename = basename(from_path);
genfile = LIBMTP_new_file_t();
genfile->filesize = filesize;