We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ed3863 + 5efc60c commit ac5ce66Copy full SHA for ac5ce66
vcs-svn/fast_export.c
@@ -73,7 +73,7 @@ void fast_export_begin_note(uint32_t revision, const char *author,
73
static int firstnote = 1;
74
size_t loglen = strlen(log);
75
printf("commit %s\n", note_ref);
76
- printf("committer %s <%s@%s> %ld +0000\n", author, author, "local", timestamp);
+ printf("committer %s <%s@%s> %lu +0000\n", author, author, "local", timestamp);
77
printf("data %"PRIuMAX"\n", (uintmax_t)loglen);
78
fwrite(log, loglen, 1, stdout);
79
if (firstnote) {
@@ -107,7 +107,7 @@ void fast_export_begin_commit(uint32_t revision, const char *author,
107
}
108
printf("commit %s\n", local_ref);
109
printf("mark :%"PRIu32"\n", revision);
110
- printf("committer %s <%s@%s> %ld +0000\n",
+ printf("committer %s <%s@%s> %lu +0000\n",
111
*author ? author : "nobody",
112
113
*uuid ? uuid : "local", timestamp);
0 commit comments