diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2015-02-16 03:14:32 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2015-02-16 03:14:32 +0100 |
| commit | 437ba9ad651a395b8b3105f5a2d2848194166c06 (patch) | |
| tree | eb40ab7640394c68333ec670123b4a04f71dce70 /src/commit.c | |
| parent | a291790a8d42579dafe8684151931847921a9578 (diff) | |
| parent | c8e02b8776875e6372fc5eba8fc61c51f14f3392 (diff) | |
| download | libgit2-437ba9ad651a395b8b3105f5a2d2848194166c06.tar.gz | |
Merge pull request #2909 from stewid/remove_extra_semicolon
Remove extra semicolon outside of a function
Diffstat (limited to 'src/commit.c')
| -rw-r--r-- | src/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.c b/src/commit.c index 78c4b9de3..beb2c64c3 100644 --- a/src/commit.c +++ b/src/commit.c @@ -400,7 +400,7 @@ GIT_COMMIT_GETTER(const char *, raw_header, commit->raw_header) GIT_COMMIT_GETTER(git_time_t, time, commit->committer->when.time) GIT_COMMIT_GETTER(int, time_offset, commit->committer->when.offset) GIT_COMMIT_GETTER(unsigned int, parentcount, (unsigned int)git_array_size(commit->parent_ids)) -GIT_COMMIT_GETTER(const git_oid *, tree_id, &commit->tree_id); +GIT_COMMIT_GETTER(const git_oid *, tree_id, &commit->tree_id) const char *git_commit_message(const git_commit *commit) { |
