]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/helper/test-ref-store.c
test-ref-store: don't add newline to reflog message
[thirdparty/git.git] / t / helper / test-ref-store.c
index 3986665037a199293bab786c6b324d408ad69a71..5ac33dfb598d3dc0d06547cba570836616d97788 100644 (file)
@@ -152,9 +152,8 @@ static int each_reflog(struct object_id *old_oid, struct object_id *new_oid,
                       const char *committer, timestamp_t timestamp,
                       int tz, const char *msg, void *cb_data)
 {
-       printf("%s %s %s %"PRItime" %d %s\n",
-              oid_to_hex(old_oid), oid_to_hex(new_oid),
-              committer, timestamp, tz, msg);
+       printf("%s %s %s %" PRItime " %d %s", oid_to_hex(old_oid),
+              oid_to_hex(new_oid), committer, timestamp, tz, msg);
        return 0;
 }