Signed-off-by: Nguyễn Thái Ngọc Duy <pclo...@gmail.com>
---
 builtin/index-pack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index f071ed9..fbf97f0 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c
@@ -775,8 +775,8 @@ static void *unpack_raw_entry(struct object_entry *obj,
                break;
        case OBJ_OFS_DELTA:
                if (packv4)
-                       die(_("pack version 4 does not support ofs-delta type 
(offset %lu)"),
-                           (unsigned long)obj->idx.offset);
+                       bad_object(obj->idx.offset,
+                                  _("pack version 4 does not support ofs-delta 
type"));
                offset = obj->idx.offset - read_varint();
                if (offset <= 0 || offset >= obj->idx.offset)
                        bad_object(obj->idx.offset,
-- 
1.8.2.83.gc99314b

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to