diff options
author | Russell Belfer <rb@github.com> | 2012-05-17 13:05:17 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-05-17 13:05:17 -0700 |
commit | 706a9974a297ea1b38c6aab886b54598409725e8 (patch) | |
tree | 206597edf7b85241b6b00039eae76b67e2274dfe /examples/general.c | |
parent | db756d5898fa6e0bdd2aeaa2cccfa55ece6c09a2 (diff) | |
download | libgit2-706a9974a297ea1b38c6aab886b54598409725e8.tar.gz |
Basic setup for profiling
This fixes the examples so they will build and adds a PROFILE
option to the CMakeFile that enabled gprof info on non-Windows
Diffstat (limited to 'examples/general.c')
-rw-r--r-- | examples/general.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/general.c b/examples/general.c index 0a908bc48..46f2009bc 100644 --- a/examples/general.c +++ b/examples/general.c @@ -273,7 +273,7 @@ int main (int argc, char** argv) // Once you have the entry object, you can access the content or subtree (or commit, in the case // of submodules) that it points to. You can also get the mode if you want. - git_tree_entry_2object(&objt, repo, entry); // blob + git_tree_entry_to_object(&objt, repo, entry); // blob // Remember to close the looked-up object once you are done using it git_object_free(objt); |