forked from len0rd/rockbox
Let GCC check arguments of some more printf-style functions, also for plugins and codecs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12815 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1329d7d3fd
commit
79c8a8cbbe
20 changed files with 55 additions and 49 deletions
|
|
@ -459,7 +459,7 @@ int main(void)
|
|||
#endif
|
||||
"\n"
|
||||
,BATTERY_LOG,rb->global_settings->battery_capacity,
|
||||
BUF_SIZE / sizeof(struct batt_info));
|
||||
BUF_SIZE / (unsigned)sizeof(struct batt_info));
|
||||
rb->close(fd);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1918,25 +1918,25 @@ void deh_procFrame(DEHFILE *fpin, int fpout, char *line)
|
|||
}
|
||||
if (!strcasecmp(key,deh_state[0])) // Sprite number
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - sprite = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - sprite = %ld\n",(long)value);
|
||||
states[indexnum].sprite = (spritenum_t)value;
|
||||
}
|
||||
else
|
||||
if (!strcasecmp(key,deh_state[1])) // Sprite subnumber
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - frame = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - frame = %ld\n",(long)value);
|
||||
states[indexnum].frame = (long)value; // long
|
||||
}
|
||||
else
|
||||
if (!strcasecmp(key,deh_state[2])) // Duration
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - tics = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - tics = %ld\n",(long)value);
|
||||
states[indexnum].tics = (long)value; // long
|
||||
}
|
||||
else
|
||||
if (!strcasecmp(key,deh_state[3])) // Next frame
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - nextstate = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - nextstate = %ld\n",(long)value);
|
||||
states[indexnum].nextstate = (statenum_t)value;
|
||||
}
|
||||
else
|
||||
|
|
@ -1948,13 +1948,13 @@ void deh_procFrame(DEHFILE *fpin, int fpout, char *line)
|
|||
else
|
||||
if (!strcasecmp(key,deh_state[5])) // Unknown 1
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - misc1 = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - misc1 = %ld\n",(long)value);
|
||||
states[indexnum].misc1 = (long)value; // long
|
||||
}
|
||||
else
|
||||
if (!strcasecmp(key,deh_state[6])) // Unknown 2
|
||||
{
|
||||
if (fpout) fdprintf(fpout," - misc2 = %d\n",value);
|
||||
if (fpout) fdprintf(fpout," - misc2 = %ld\n",(long)value);
|
||||
states[indexnum].misc2 = (long)value; // long
|
||||
}
|
||||
else
|
||||
|
|
@ -2017,8 +2017,8 @@ void deh_procPointer(DEHFILE *fpin, int fpout, char *line) // done
|
|||
if (!strcasecmp(key,deh_state[4])) // Codep frame (not set in Frame deh block)
|
||||
{
|
||||
states[indexnum].action = deh_codeptr[value];
|
||||
if (fpout) fdprintf(fpout," - applied from codeptr[%d] to states[%d]\n",
|
||||
value,indexnum);
|
||||
if (fpout) fdprintf(fpout," - applied from codeptr[%ld] to states[%d]\n",
|
||||
(long)value,indexnum);
|
||||
// Write BEX-oriented line to match:
|
||||
for (i=0;i<NUMSTATES;i++)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -418,10 +418,10 @@ int flash_rockbox(const char *filename, int section)
|
|||
if (section == SECT_ROMIMAGE)
|
||||
{
|
||||
uint32_t *p32 = (uint32_t *)audiobuf;
|
||||
|
||||
|
||||
if (pos+sizeof(struct flash_header) != *p32)
|
||||
{
|
||||
rb->snprintf(buf, sizeof(buf), "Incorrect relocation: 0x%08x/0x%08x",
|
||||
rb->snprintf(buf, sizeof(buf), "Incorrect relocation: 0x%08lx/0x%08lx",
|
||||
*p32, pos+sizeof(struct flash_header));
|
||||
rb->splash(HZ*10, buf);
|
||||
return -1;
|
||||
|
|
|
|||
|
|
@ -2565,7 +2565,7 @@ struct t_disp* get_image(struct jpeg* p_jpg, int ds)
|
|||
|
||||
if(!running_slideshow)
|
||||
{
|
||||
rb->snprintf(print, sizeof(print), " %d.%02d sec ", time/HZ, time%HZ);
|
||||
rb->snprintf(print, sizeof(print), " %ld.%02ld sec ", time/HZ, time%HZ);
|
||||
rb->lcd_getstringsize(print, &w, &h); /* centered in progress bar */
|
||||
rb->lcd_putsxy((LCD_WIDTH - w)/2, LCD_HEIGHT - h, print);
|
||||
rb->lcd_update();
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
|
|||
|
||||
/* Scan our config file and load the right patches as needed */
|
||||
int c = 0;
|
||||
rb->snprintf(name, 40, "");
|
||||
name[0] = '\0';
|
||||
printf("\nLoading instruments");
|
||||
for(a=0; a<128; a++)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2466,10 +2466,10 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
}
|
||||
|
||||
rb->lcd_clear_display();
|
||||
rb->snprintf(stg, 30, " Conversion: %d.%02ds ", tim/100, tim%100);
|
||||
rb->snprintf(stg, 30, " Conversion: %ld.%02lds ", tim/100, tim%100);
|
||||
rb->lcd_putsxy(0, 30, stg);
|
||||
tim = frames * SAMP_PER_FRAME * 100 / 44100; /* unit=.01s */
|
||||
rb->snprintf(stg, 30, " WAV-Length: %d.%02ds ", tim/100, tim%100);
|
||||
rb->snprintf(stg, 30, " WAV-Length: %ld.%02lds ", tim/100, tim%100);
|
||||
rb->lcd_putsxy(0, 20, stg);
|
||||
rb->lcd_update();
|
||||
rb->sleep(5*HZ);
|
||||
|
|
|
|||
|
|
@ -693,7 +693,7 @@ void DoUserDialog(char* filename)
|
|||
crc = CheckBootloader();
|
||||
if (crc) /* outdated version found */
|
||||
{
|
||||
rb->snprintf(buf, sizeof(buf), "(check=0x%08x)", crc);
|
||||
rb->snprintf(buf, sizeof(buf), "(check=0x%08lx)", crc);
|
||||
rb->lcd_puts(0, 0, buf);
|
||||
rb->lcd_puts(0, 1, "Hint: You're not ");
|
||||
rb->lcd_puts(0, 2, "using the latest ");
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ static void build_slot_path(char *buf, size_t bufsiz, size_t slot_id) {
|
|||
munge_name(name_buf, strlen(name_buf));
|
||||
|
||||
/* glom the whole mess together */
|
||||
snprintf(buf, bufsiz, "%s/%s-%d.rbs", STATE_DIR, name_buf, slot_id + 1);
|
||||
snprintf(buf, bufsiz, "%s/%s-%ld.rbs", STATE_DIR, name_buf, slot_id + 1);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -263,17 +263,17 @@ static void slot_info(char *info_buf, size_t info_bufsiz, size_t slot_id) {
|
|||
if (read(fd, buf, 20) > 0)
|
||||
{
|
||||
buf[20] = '\0';
|
||||
snprintf(info_buf, info_bufsiz, "%d. %s", slot_id + 1, buf);
|
||||
snprintf(info_buf, info_bufsiz, "%ld. %s", slot_id + 1, buf);
|
||||
}
|
||||
else
|
||||
snprintf(info_buf, info_bufsiz, "%d. ERROR", slot_id + 1);
|
||||
snprintf(info_buf, info_bufsiz, "%ld. ERROR", slot_id + 1);
|
||||
|
||||
close(fd);
|
||||
}
|
||||
else
|
||||
{
|
||||
/* if we couldn't open the file, then the slot is empty */
|
||||
snprintf(info_buf, info_bufsiz, "%d. %s", slot_id + 1, "<Empty>");
|
||||
snprintf(info_buf, info_bufsiz, "%ld. %s", slot_id + 1, "<Empty>");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2958,7 +2958,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
}
|
||||
else
|
||||
{
|
||||
rb->splash( 1*HZ, "Image loaded (%s)", parameter );
|
||||
rb->splash( 1*HZ, "Image loaded (%s)", (char *)parameter );
|
||||
restore_screen();
|
||||
rb->strcpy( filename, parameter );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
if(p)
|
||||
*p = 0;
|
||||
|
||||
rb->snprintf(resultfile, MAX_PATH, "%s/search_result.m3u", path, p+1);
|
||||
rb->snprintf(resultfile, MAX_PATH, "%s/search_result.m3u", path);
|
||||
ok = search_init(parameter);
|
||||
if (!ok) {
|
||||
return PLUGIN_ERROR;
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ static bool test_speed(void)
|
|||
goto error;
|
||||
}
|
||||
time = *rb->current_tick - time;
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Create: %d KByte/s",
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Create: %ld KByte/s",
|
||||
(25 * buf_len / time) >> 8);
|
||||
log_lcd(text_buf, true);
|
||||
rb->close(fd);
|
||||
|
|
@ -226,7 +226,7 @@ static bool test_speed(void)
|
|||
goto error;
|
||||
}
|
||||
time = *rb->current_tick - time;
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Write A: %d KByte/s",
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Write A: %ld KByte/s",
|
||||
(25 * buf_len / time) >> 8);
|
||||
log_lcd(text_buf, true);
|
||||
rb->close(fd);
|
||||
|
|
@ -245,7 +245,7 @@ static bool test_speed(void)
|
|||
goto error;
|
||||
}
|
||||
time = *rb->current_tick - time;
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Write U: %d KByte/s",
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Write U: %ld KByte/s",
|
||||
(25 * buf_len / time) >> 8);
|
||||
log_lcd(text_buf, true);
|
||||
rb->close(fd);
|
||||
|
|
@ -264,7 +264,7 @@ static bool test_speed(void)
|
|||
goto error;
|
||||
}
|
||||
time = *rb->current_tick - time;
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Read A: %d KByte/s",
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Read A: %ld KByte/s",
|
||||
(25 * buf_len / time) >> 8);
|
||||
log_lcd(text_buf, true);
|
||||
rb->close(fd);
|
||||
|
|
@ -283,7 +283,7 @@ static bool test_speed(void)
|
|||
goto error;
|
||||
}
|
||||
time = *rb->current_tick - time;
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Read U: %d KByte/s",
|
||||
rb->snprintf(text_buf, sizeof text_buf, "Read U: %ld KByte/s",
|
||||
(25 * buf_len / time) >> 8);
|
||||
log_lcd(text_buf, true);
|
||||
rb->close(fd);
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ char *list_get_name_cb(int selected_item,void* data,char* buf)
|
|||
{
|
||||
char t = b[MAX_PATH-10];
|
||||
b[MAX_PATH-10] = '\0';
|
||||
rb->snprintf(buf,MAX_PATH,"%s ...\0",b);
|
||||
rb->snprintf(buf,MAX_PATH,"%s ...",b);
|
||||
b[MAX_PATH-10] = t;
|
||||
}
|
||||
else rb->strcpy(buf,b);
|
||||
|
|
|
|||
|
|
@ -962,9 +962,9 @@ int main(char* filename)
|
|||
rb->lcd_puts(0, 2, gPrint);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "%d MinVideo bytes", gStats.minVideoAvail);
|
||||
rb->lcd_puts(0, 3, gPrint);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "MinSpinup %d.%02d", gStats.minSpinup/HZ, gStats.minSpinup%HZ);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "MinSpinup %ld.%02ld", gStats.minSpinup/HZ, gStats.minSpinup%HZ);
|
||||
rb->lcd_puts(0, 4, gPrint);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "MaxSpinup %d.%02d", gStats.maxSpinup/HZ, gStats.maxSpinup%HZ);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "MaxSpinup %ld.%02ld", gStats.maxSpinup/HZ, gStats.maxSpinup%HZ);
|
||||
rb->lcd_puts(0, 5, gPrint);
|
||||
rb->snprintf(gPrint, sizeof(gPrint), "LowWater: %d", gBuf.low_water);
|
||||
rb->lcd_puts(0, 6, gPrint);
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ static void wvupdate (int32_t start_tick,
|
|||
compression = (int)(((int64_t)(bytes_read - bytes_written) * 100 +
|
||||
(bytes_read/2)) / bytes_read);
|
||||
|
||||
rb->snprintf(buf, 32, "elapsed time: %d secs", (elapsed_ticks + (HZ/2)) / HZ);
|
||||
rb->snprintf(buf, 32, "elapsed time: %ld secs", (elapsed_ticks + (HZ/2)) / HZ);
|
||||
rb->lcd_puts(0, 2, (unsigned char *)buf);
|
||||
|
||||
rb->snprintf(buf, 32, "progress: %d%%", progress);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue