Fix for HAVE_MULTIDRIVE on application builds.

Change-Id: I089ea4756e0c824993c65062290c40b3e67f9181
This commit is contained in:
Thomas Martitz 2014-02-07 18:18:16 +01:00
parent 5802141bec
commit cbc57af0f3
3 changed files with 4 additions and 3 deletions

View file

@ -43,8 +43,9 @@ long filesize(int fd)
}
/* do we really need this in the app? */
void fat_size(unsigned long* size, unsigned long* free)
void fat_size(IF_MV(int volume,) unsigned long* size, unsigned long* free)
{
IF_MV((void) volume);
*size = *free = 0;
}