summaryrefslogtreecommitdiffstats
path: root/include/timeutils.h
diff options
context:
space:
mode:
authorKarel Zak2016-05-23 11:56:31 +0200
committerKarel Zak2016-05-23 11:56:31 +0200
commit01b47d46d76291ea338ecd5190e1e670f4ab890a (patch)
tree4b45bc12e4ba7514aad847638a1b32a9a7a2ab0a /include/timeutils.h
parentsulogin: agetty: use the plymouth local protocol instead the plymouth binary (diff)
downloadkernel-qcow2-util-linux-01b47d46d76291ea338ecd5190e1e670f4ab890a.tar.gz
kernel-qcow2-util-linux-01b47d46d76291ea338ecd5190e1e670f4ab890a.tar.xz
kernel-qcow2-util-linux-01b47d46d76291ea338ecd5190e1e670f4ab890a.zip
include/timeutils: use pointer for time_t
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'include/timeutils.h')
-rw-r--r--include/timeutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timeutils.h b/include/timeutils.h
index 4b6098ae1..a1cd1b353 100644
--- a/include/timeutils.h
+++ b/include/timeutils.h
@@ -64,6 +64,6 @@ enum {
};
char *strtimeval_iso(struct timeval *tv, int flags);
char *strtm_iso(struct tm *tm, int flags);
-char *strtime_iso(time_t t, int flags);
+char *strtime_iso(const time_t *t, int flags);
#endif /* UTIL_LINUX_TIME_UTIL_H */