diff options
author | Mike Ralphson <mike.ralphson@gmail.com> | 2016-09-14 06:40:57 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-14 08:56:50 -0700 |
commit | 5efc60c12f6f63f0ab4e9601c17fdbec94e4049a (patch) | |
tree | 9120a6e072f5d9d51c594c662249d5f3029362ff /vcs-svn/fast_export.c | |
parent | 282616c72d1d08a77ca4fe1186cb708c38408d87 (diff) | |
download | git-5efc60c12f6f63f0ab4e9601c17fdbec94e4049a.tar.gz git-5efc60c12f6f63f0ab4e9601c17fdbec94e4049a.tar.xz |
vcs-svn/fast_export: fix timestamp fmt specifiers
Two instances of %ld being used for unsigned longs
Signed-off-by: Mike Ralphson <mike.ralphson@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'vcs-svn/fast_export.c')
-rw-r--r-- | vcs-svn/fast_export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcs-svn/fast_export.c b/vcs-svn/fast_export.c index bd0f2c2b8..97cba39cd 100644 --- a/vcs-svn/fast_export.c +++ b/vcs-svn/fast_export.c @@ -73,7 +73,7 @@ void fast_export_begin_note(uint32_t revision, const char *author, static int firstnote = 1; size_t loglen = strlen(log); printf("commit %s\n", note_ref); - printf("committer %s <%s@%s> %ld +0000\n", author, author, "local", timestamp); + printf("committer %s <%s@%s> %lu +0000\n", author, author, "local", timestamp); printf("data %"PRIuMAX"\n", (uintmax_t)loglen); fwrite(log, loglen, 1, stdout); if (firstnote) { @@ -107,7 +107,7 @@ void fast_export_begin_commit(uint32_t revision, const char *author, } printf("commit %s\n", local_ref); printf("mark :%"PRIu32"\n", revision); - printf("committer %s <%s@%s> %ld +0000\n", + printf("committer %s <%s@%s> %lu +0000\n", *author ? author : "nobody", *author ? author : "nobody", *uuid ? uuid : "local", timestamp); |