diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2016-04-22 01:11:17 +0200 |
---|---|---|
committer | Michael Haggerty <mhagger@alum.mit.edu> | 2016-06-13 11:23:49 +0200 |
commit | 92b380931ee8beacb0c09635432b38a02b9fcc7e (patch) | |
tree | 8535c1196cb62eac43c5a067343e0d1d1114776e /refs/refs-internal.h | |
parent | fa96ea1b883bf83fc488f999c58396bbab1860c1 (diff) | |
download | git-92b380931ee8beacb0c09635432b38a02b9fcc7e.tar.gz |
read_raw_ref(): rename symref argument to referent
After all, it doesn't hold the symbolic reference, but rather the
reference referred to.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Diffstat (limited to 'refs/refs-internal.h')
-rw-r--r-- | refs/refs-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/refs/refs-internal.h b/refs/refs-internal.h index 0b047f67ba..37a1a37ea0 100644 --- a/refs/refs-internal.h +++ b/refs/refs-internal.h @@ -210,6 +210,6 @@ int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn, int trim, int flags, void *cb_data); int read_raw_ref(const char *refname, unsigned char *sha1, - struct strbuf *symref, unsigned int *type); + struct strbuf *referent, unsigned int *type); #endif /* REFS_REFS_INTERNAL_H */ |