Commit 30b4bb734581ef7586f4c99a6be5675153e3a6df

Stefan Sperling 2017-11-27T01:24:58

remove a debug printf

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/regress/repository/repository_test.c b/regress/repository/repository_test.c
index d5a430d..395a24d 100644
--- a/regress/repository/repository_test.c
+++ b/regress/repository/repository_test.c
@@ -175,7 +175,6 @@ repo_read_log(const char *repo_path)
 	err = got_object_open(&obj, repo, id);
 	if (err != NULL || obj == NULL)
 		return 0;
-	printf("object type=%d size=%lu\n", obj->type, obj->size);
 	if (obj->type == GOT_OBJ_TYPE_COMMIT)
 		print_commit_object(obj, repo);
 	got_object_close(obj);