diff options
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/firmware_flash.c | 2 | ||||
-rw-r--r-- | apps/plugins/wavrecord.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/firmware_flash.c b/apps/plugins/firmware_flash.c index 5c310e028d..24fb3395b6 100644 --- a/apps/plugins/firmware_flash.c +++ b/apps/plugins/firmware_flash.c | |||
@@ -570,7 +570,7 @@ void ShowFlashInfo(tFlashInfo* pInfo) | |||
570 | if (pInfo->size) | 570 | if (pInfo->size) |
571 | { | 571 | { |
572 | rb->lcd_puts(0, 1, pInfo->name); | 572 | rb->lcd_puts(0, 1, pInfo->name); |
573 | rb->lcd_puts(0, 2, "Size: %d KB", pInfo->size / 1024); | 573 | rb->lcd_putsf(0, 2, "Size: %d KB", pInfo->size / 1024); |
574 | } | 574 | } |
575 | else | 575 | else |
576 | { | 576 | { |
diff --git a/apps/plugins/wavrecord.c b/apps/plugins/wavrecord.c index 91ce9c92f6..90ee1b4b8f 100644 --- a/apps/plugins/wavrecord.c +++ b/apps/plugins/wavrecord.c | |||
@@ -3652,7 +3652,7 @@ static int record_file(char *filename) | |||
3652 | recording = false; | 3652 | recording = false; |
3653 | saving = true; | 3653 | saving = true; |
3654 | } | 3654 | } |
3655 | rb->lcd_puts(0, 2, "Bytes: %d", num_rec_bytes); | 3655 | rb->lcd_putsf(0, 2, "Bytes: %d", num_rec_bytes); |
3656 | rb->lcd_update(); | 3656 | rb->lcd_update(); |
3657 | } | 3657 | } |
3658 | /* read sample rate from MAS */ | 3658 | /* read sample rate from MAS */ |