From: Sebastian Stark Date: Wed, 22 Oct 2008 15:14:30 +0000 (+0200) Subject: use C99-compliant format strings for consistency reasons X-Git-Tag: v0.1.1~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=commitdiff_plain;h=ee3cd16153a02196718951bd9c562b6fa2cf15dd use C99-compliant format strings for consistency reasons --- diff --git a/snap.c b/snap.c index a5749a9..89d6004 100644 --- a/snap.c +++ b/snap.c @@ -188,17 +188,15 @@ void free_snapshot_list(struct snapshot_list *sl) __malloc char *incomplete_name(int64_t start) { - return make_message("%lli-incomplete", (long long)start); + return make_message("%" PRId64 "-incomplete", start); } __malloc char *being_deleted_name(struct snapshot *s) { if (s->flags & SS_COMPLETE) - return make_message("%lli-%lli.being_deleted", - (long long)s->creation_time, - (long long)s->completion_time); - return make_message("%lli-incomplete.being_deleted", - (long long)s->creation_time); + return make_message("%" PRId64 "-%" PRId64 ".being_deleted", + s->creation_time, s->completion_time); + return make_message("%" PRId64 "-incomplete.being_deleted", s->creation_time); } int complete_name(int64_t start, int64_t end, char **result) @@ -216,7 +214,7 @@ int complete_name(int64_t start, int64_t end, char **result) return -E_STRFTIME; if (!strftime(end_str, sizeof(end_str), "%a_%b_%d_%Y_%H_%M_%S", &end_tm)) return -E_STRFTIME; - *result = make_message("%lli-%lli.%s-%s", (long long) start, (long long) end, + *result = make_message("%" PRId64 "-%" PRId64 ".%s-%s", start, end, start_str, end_str); return 1; } diff --git a/time.c b/time.c index 6c8169f..41db7bf 100644 --- a/time.c +++ b/time.c @@ -141,6 +141,6 @@ int64_t get_current_time(void) { time_t now; time(&now); - DSS_DEBUG_LOG("now: %lli\n", (long long) now); + DSS_DEBUG_LOG("now: %jd\n", (intmax_t)now); return (int64_t)now; }