mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
23 lines
813 B
Plaintext
23 lines
813 B
Plaintext
$NetBSD: patch-ca,v 1.3 2014/01/15 17:19:30 drochner Exp $
|
|
|
|
--- src/plugins/vcalendar/vcal_folder.c.orig 2014-01-14 12:32:26.000000000 +0000
|
|
+++ src/plugins/vcalendar/vcal_folder.c
|
|
@@ -766,7 +766,7 @@ GSList *vcal_get_events_list(FolderItem
|
|
struct icaltimetype dtstart;
|
|
struct icaltimetype next;
|
|
icalrecur_iterator* ritr;
|
|
- time_t duration = (time_t) NULL;
|
|
+ time_t duration = (time_t) 0;
|
|
struct icaldurationtype ical_dur;
|
|
int i = 0;
|
|
|
|
@@ -1158,7 +1158,7 @@ static void vcal_set_mtime(Folder *folde
|
|
}
|
|
|
|
item->mtime = s.st_mtime;
|
|
- debug_print("VCAL: forced mtime of %s to %ld\n", item->name?item->name:"(null)", item->mtime);
|
|
+ debug_print("VCAL: forced mtime of %s to %lld\n", item->name?item->name:"(null)", (long long)item->mtime);
|
|
g_free(path);
|
|
}
|
|
|