1
0
Fork 0
forked from len0rd/rockbox

Fix compile error on BSD and Mac OS and remove a warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12199 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-02-04 23:41:47 +00:00
parent 4da04b77e2
commit c500b968b8

View file

@ -351,7 +351,7 @@ void print_usage(void) {
#else #else
#if defined(linux) || defined (__linux) #if defined(linux) || defined (__linux)
fprintf(stderr,"\"device\" is the device node (e.g. /dev/sda) assigned to your ipod.\n"); fprintf(stderr,"\"device\" is the device node (e.g. /dev/sda) assigned to your ipod.\n");
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) \ #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
fprintf(stderr,"\"device\" is the device node (e.g. /dev/da1) assigned to your ipod.\n"); fprintf(stderr,"\"device\" is the device node (e.g. /dev/da1) assigned to your ipod.\n");
#elif defined(__APPLE__) && defined(__MACH__) #elif defined(__APPLE__) && defined(__MACH__)
fprintf(stderr,"\"device\" is the device node (e.g. /dev/disk1) assigned to your ipod.\n"); fprintf(stderr,"\"device\" is the device node (e.g. /dev/disk1) assigned to your ipod.\n");
@ -649,7 +649,7 @@ int add_bootloader(struct ipod_t* ipod, char* filename, int type)
/* Write directory */ /* Write directory */
if (ipod_seek(ipod, ipod->start + ipod->diroffset - x) < 0) { if (ipod_seek(ipod, ipod->start + ipod->diroffset - x) < 0) {
fprintf(stderr,"[ERR] Seek to %ld failed\n", ipod->start+ipod->diroffset-x); fprintf(stderr,"[ERR] Seek to %d failed\n", (int)(ipod->start+ipod->diroffset-x));
return -1; return -1;
} }
n=ipod_write(ipod, sectorbuf, ipod->sector_size); n=ipod_write(ipod, sectorbuf, ipod->sector_size);