summaryrefslogtreecommitdiff
path: root/include/git2/object.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-06-16 00:23:01 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2019-06-16 00:23:01 +0100
commitb7791d0426884088743a8dafac1001de21650285 (patch)
treec0a1fdf2b2d97a046c412fe29421e35a7e8d7e84 /include/git2/object.h
parentfef847ae57d74e93563bc04222d9da7007fffc4f (diff)
downloadlibgit2-ethomson/object_size.tar.gz
object: rename git_object__size to git_object_sizeethomson/object_size
We don't use double-underscores in the public API.
Diffstat (limited to 'include/git2/object.h')
-rw-r--r--include/git2/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/object.h b/include/git2/object.h
index 01dc37ace..9b4517830 100644
--- a/include/git2/object.h
+++ b/include/git2/object.h
@@ -197,7 +197,7 @@ GIT_EXTERN(int) git_object_typeisloose(git_object_t type);
* @param type object type to get its size
* @return size in bytes of the object
*/
-GIT_EXTERN(size_t) git_object__size(git_object_t type);
+GIT_EXTERN(size_t) git_object_size(git_object_t type);
/**
* Recursively peel an object until an object of the specified type is met.