commit 28ec8409d3a376afcb924387e0c7727729c6acb8 from: Stefan Sperling date: Tue Apr 24 17:16:06 2018 UTC fix typo in blob read buffer size in diff_blobs() commit - 7918459e7b2f26835d75b06badcb4c27177fcccd commit + 28ec8409d3a376afcb924387e0c7727729c6acb8 blob - 16e9b0f24dd3c2f82b3dd2fb15881aa146b5ce27 blob + c8a1143bff915c1c1c59d727dfcef953b0a84956 --- got/got.c +++ got/got.c @@ -531,7 +531,7 @@ diff_blobs(struct got_object *obj1, struct got_object err = got_object_blob_open(&blob1, repo, obj1, 8192); if (err) goto done; - err = got_object_blob_open(&blob2, repo, obj2, 81992); + err = got_object_blob_open(&blob2, repo, obj2, 8192); if (err) goto done;