summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index fc527923db..0f1ff30cf5 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1762,7 +1762,7 @@ bool recording_screen(bool no_source)
1762 draw attention */ 1762 draw attention */
1763 /* Don't use language string unless agreed upon to make this 1763 /* Don't use language string unless agreed upon to make this
1764 method permanent - could do something in the statusbar */ 1764 method permanent - could do something in the statusbar */
1765 snprintf(buf, sizeof(buf), "Warning: %08X", 1765 snprintf(buf, sizeof(buf), "Warning: %08lX",
1766 pcm_rec_get_warnings()); 1766 pcm_rec_get_warnings());
1767 } 1767 }
1768 else 1768 else
@@ -1771,7 +1771,7 @@ bool recording_screen(bool no_source)
1771 (global_settings.rec_split_method)) 1771 (global_settings.rec_split_method))
1772 { 1772 {
1773 dmb = dsize/1024/1024; 1773 dmb = dsize/1024/1024;
1774 snprintf(buf, sizeof(buf), "%s %dMB", 1774 snprintf(buf, sizeof(buf), "%s %luMB",
1775 str(LANG_SPLIT_SIZE), dmb); 1775 str(LANG_SPLIT_SIZE), dmb);
1776 } 1776 }
1777 else 1777 else