summaryrefslogtreecommitdiff
path: root/apps/plugins/calendar.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/calendar.c')
-rw-r--r--apps/plugins/calendar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/calendar.c b/apps/plugins/calendar.c
index ded0a70d26..11a37191af 100644
--- a/apps/plugins/calendar.c
+++ b/apps/plugins/calendar.c
@@ -842,7 +842,7 @@ static void add_memo(struct shown *shown, int type)
842{ 842{
843 bool saved = false; 843 bool saved = false;
844 struct memo *memo = &memos[memos_in_memory]; 844 struct memo *memo = &memos[memos_in_memory];
845 if (rb->kbd_input(memo->message, MAX_CHAR_MEMO_LEN) == 0) 845 if (rb->kbd_input(memo->message, MAX_CHAR_MEMO_LEN, NULL) == 0)
846 { 846 {
847 if (memo->message[0]) 847 if (memo->message[0])
848 { 848 {
@@ -920,7 +920,7 @@ static bool edit_memo(int change, struct shown *shown)
920 920
921 case 1: /* edit */ 921 case 1: /* edit */
922 if(rb->kbd_input(memos[change].message, 922 if(rb->kbd_input(memos[change].message,
923 MAX_CHAR_MEMO_LEN) == 0) 923 MAX_CHAR_MEMO_LEN, NULL) == 0)
924 save_memo(change, true, shown); 924 save_memo(change, true, shown);
925 return false; 925 return false;
926 926