diff options
Diffstat (limited to 'src/plist.c')
-rw-r--r-- | src/plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plist.c b/src/plist.c index c3c9e7b..4fc2780 100644 --- a/src/plist.c +++ b/src/plist.c @@ -368,7 +368,7 @@ void plist_add_sub_unicode_el(plist_t node, const char *val) void plist_add_sub_date_el(plist_t node, int32_t sec, int32_t usec) { GTimeVal val = { sec, usec }; - plist_add_sub_element(node, PLIST_UNICODE, &val, sizeof(GTimeVal)); + plist_add_sub_element(node, PLIST_DATE, &val, sizeof(GTimeVal)); } void plist_get_key_val(plist_t node, char **val) |