Skip to content

Commit

Permalink
owner var is unused
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Jun 11, 2012
1 parent c5a27fa commit 5376c10
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ext/rugged/rugged_commit.c
Expand Up @@ -232,11 +232,10 @@ static VALUE rb_git_commit_parent_oids_GET(VALUE self)
git_commit *commit;
const git_oid *parent_oid;
unsigned int n, parent_count;
VALUE ret_arr, owner;
VALUE ret_arr;
int error;

Data_Get_Struct(self, git_commit, commit);
owner = rugged_owner(self);

parent_count = git_commit_parentcount(commit);
ret_arr = rb_ary_new2((long)parent_count);
Expand Down

0 comments on commit 5376c10

Please sign in to comment.