aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/procheader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/procheader.c b/libsylph/procheader.c
index 82a1d615..c972a83f 100644
--- a/libsylph/procheader.c
+++ b/libsylph/procheader.c
@@ -794,7 +794,7 @@ void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
lt = localtime(&timer);
if (!lt) {
- g_warning("can't get localtime of %d\n", timer);
+ g_warning("can't get localtime of %ld\n", timer);
dest[0] = '\0';
return;
}