summaryrefslogtreecommitdiffstats
path: root/src/xplist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xplist.c')
-rw-r--r--src/xplist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xplist.c b/src/xplist.c
index 3157ab0..b2c134e 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -194,6 +194,7 @@ static plist_err_t node_to_xml(node_t node, bytearray_t **outbuf, uint32_t depth
194 { 194 {
195 Time64_T timev; 195 Time64_T timev;
196 if (plist_real_to_time64(node_data->realval, &timev) < 0) { 196 if (plist_real_to_time64(node_data->realval, &timev) < 0) {
197 PLIST_XML_WRITE_ERR("Encountered invalid date value %f\n", node_data->realval);
197 return PLIST_ERR_INVALID_ARG; 198 return PLIST_ERR_INVALID_ARG;
198 } 199 }
199 struct TM _btime; 200 struct TM _btime;