/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove TYPE_* constant macros and use object_type enums consistently.
[git/git.git]
/
blob.c
diff --git
a/blob.c
b/blob.c
index
496f270
..
d1af2e6
100644
(file)
--- a/
blob.c
+++ b/
blob.c
@@
-10,12
+10,12
@@
struct blob *lookup_blob(const unsigned char *sha1)
if (!obj) {
struct blob *ret = alloc_blob_node();
created_object(sha1, &ret->object);
if (!obj) {
struct blob *ret = alloc_blob_node();
created_object(sha1, &ret->object);
- ret->object.type =
TYPE
_BLOB;
+ ret->object.type =
OBJ
_BLOB;
return ret;
}
if (!obj->type)
return ret;
}
if (!obj->type)
- obj->type =
TYPE
_BLOB;
- if (obj->type !=
TYPE
_BLOB) {
+ obj->type =
OBJ
_BLOB;
+ if (obj->type !=
OBJ
_BLOB) {
error("Object %s is a %s, not a blob",
sha1_to_hex(sha1), typename(obj->type));
return NULL;
error("Object %s is a %s, not a blob",
sha1_to_hex(sha1), typename(obj->type));
return NULL;