mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-04 20:15:09 +01:00
Fix linux build
This commit is contained in:
parent
6d35bc0716
commit
540a73cb54
@ -196,9 +196,7 @@ static ftp_command_t ftp_commands[] =
|
|||||||
/*! number of ftp commands */
|
/*! number of ftp commands */
|
||||||
static const size_t num_ftp_commands = sizeof(ftp_commands)/sizeof(ftp_commands[0]);
|
static const size_t num_ftp_commands = sizeof(ftp_commands)/sizeof(ftp_commands[0]);
|
||||||
|
|
||||||
#ifdef _3DS
|
|
||||||
static void update_free_space(void);
|
static void update_free_space(void);
|
||||||
#endif
|
|
||||||
|
|
||||||
/*! compare ftp command descriptors
|
/*! compare ftp command descriptors
|
||||||
*
|
*
|
||||||
@ -538,6 +536,8 @@ ftp_session_open_file_write(ftp_session_t *session,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update_free_space();
|
||||||
|
|
||||||
/* it's okay if this fails */
|
/* it's okay if this fails */
|
||||||
errno = 0;
|
errno = 0;
|
||||||
rc = setvbuf(session->fp, session->file_buffer, _IOFBF, FILE_BUFFERSIZE);
|
rc = setvbuf(session->fp, session->file_buffer, _IOFBF, FILE_BUFFERSIZE);
|
||||||
@ -1405,11 +1405,11 @@ ftp_session_poll(ftp_session_t *session)
|
|||||||
return ftp_session_destroy(session);
|
return ftp_session_destroy(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _3DS
|
|
||||||
/* Update free space in status bar */
|
/* Update free space in status bar */
|
||||||
static void
|
static void
|
||||||
update_free_space(void)
|
update_free_space(void)
|
||||||
{
|
{
|
||||||
|
#ifdef _3DS
|
||||||
#define KiB (1024.0)
|
#define KiB (1024.0)
|
||||||
#define MiB (1024.0*KiB)
|
#define MiB (1024.0*KiB)
|
||||||
#define GiB (1024.0*MiB)
|
#define GiB (1024.0*MiB)
|
||||||
@ -1448,8 +1448,8 @@ update_free_space(void)
|
|||||||
|
|
||||||
console_set_status("\x1b[0;%dH" GREEN "%s", 50-len, buffer);
|
console_set_status("\x1b[0;%dH" GREEN "%s", 50-len, buffer);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/*! Update status bar */
|
/*! Update status bar */
|
||||||
static int
|
static int
|
||||||
|
Loading…
Reference in New Issue
Block a user