diff options
| author | Authmillenon <martin@ucsmail.de> | 2012-03-06 17:51:04 +0100 |
|---|---|---|
| committer | Authmillenon <martin@ucsmail.de> | 2012-03-06 17:51:04 +0100 |
| commit | 5621d8097d48aac3ff5744c4d74115139db30a43 (patch) | |
| tree | f7e044e844d9860195b5e2af6df044905947a37a /src/oid.c | |
| parent | 864ac49e317dc8dfd683a1017c05584bd7a8864c (diff) | |
| download | libgit2-5621d8097d48aac3ff5744c4d74115139db30a43.tar.gz | |
Rename git_oid_to_string to git_oid_tostr
To conform the naming scheme of git_oid_fromstr we should change the
name of git_oid_to_string to git_oid_tostr.
Diffstat (limited to 'src/oid.c')
| -rw-r--r-- | src/oid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ char *git_oid_allocfmt(const git_oid *oid) return str; } -char *git_oid_to_string(char *out, size_t n, const git_oid *oid) +char *git_oid_tostr(char *out, size_t n, const git_oid *oid) { char str[GIT_OID_HEXSZ]; |
