1
0
Fork 0
forked from len0rd/rockbox

ipodpatcher: Fix some type warnings.

Change-Id: I66fa99db3f4913bafa17a1e976cbfd08e26349ce
This commit is contained in:
Dominik Riebeling 2020-09-25 18:10:21 +02:00
parent 0f23cadbca
commit 3806f57ed8
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ static const char *apple_stop_sign = "{{~~ /-----\\ "\
and initialise it with ipod_alloc_buf()
*/
char* get_parttype(int pt)
char* get_parttype(unsigned int pt)
{
int i;
static char unknown[]="Unknown";
@ -1478,7 +1478,7 @@ int read_firmware(struct ipod_t* ipod, char* filename, int type)
int read_directory(struct ipod_t* ipod)
{
int n;
ssize_t n;
int x;
unsigned char* p;
unsigned short version;

View file

@ -40,7 +40,7 @@ extern int ipod_verbose;
#define FILETYPE_INTERNAL 2
#endif
char* get_parttype(int pt);
char* get_parttype(unsigned int pt);
int read_partinfo(struct ipod_t* ipod, int silent);
int read_partition(struct ipod_t* ipod, int outfile);
int write_partition(struct ipod_t* ipod, int infile);