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 a57cadedd2..34af4746a9 100644
--- a/apps/plugins/calendar.c
+++ b/apps/plugins/calendar.c
@@ -316,7 +316,7 @@ static bool save_memo(int changed, bool new_mod, struct shown *shown)
316{ 316{
317 int fp,fq; 317 int fp,fq;
318 fp = rb->open("/.rockbox/.memo",O_RDONLY | O_CREAT); 318 fp = rb->open("/.rockbox/.memo",O_RDONLY | O_CREAT);
319 fq = rb->creat("/.rockbox/~temp", O_WRONLY); 319 fq = rb->creat("/.rockbox/~temp");
320 if ( (fq != -1) && (fp != -1) ) 320 if ( (fq != -1) && (fp != -1) )
321 { 321 {
322 int i; 322 int i;
@@ -345,7 +345,7 @@ static bool save_memo(int changed, bool new_mod, struct shown *shown)
345 rb->write(fq,temp,1); 345 rb->write(fq,temp,1);
346 } 346 }
347 rb->close(fp); 347 rb->close(fp);
348 fp = rb->creat("/.rockbox/.memo", O_WRONLY); 348 fp = rb->creat("/.rockbox/.memo");
349 rb->lseek(fp, 0, SEEK_SET); 349 rb->lseek(fp, 0, SEEK_SET);
350 rb->lseek(fq, 0, SEEK_SET); 350 rb->lseek(fq, 0, SEEK_SET);
351 for (i = 0; i < rb->filesize(fq); i++) 351 for (i = 0; i < rb->filesize(fq); i++)