Skip to content

Commit 028275e

Browse files
Fix whitespace.
1 parent 90572c6 commit 028275e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ext/rugged/rugged_refdb.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ static VALUE rb_git_refdb_new(VALUE klass, VALUE rb_repo) {
5454
* Create a new reference database with the default filesystem
5555
* backend.
5656
*/
57-
static VALUE rb_git_refdb_open(VALUE klass, VALUE rb_repo) {
58-
git_refdb *refdb;
59-
git_repository *repo;
57+
static VALUE rb_git_refdb_open(VALUE klass, VALUE rb_repo) {
58+
git_refdb *refdb;
59+
git_repository *repo;
6060

61-
Data_Get_Struct(rb_repo, git_repository, repo);
61+
Data_Get_Struct(rb_repo, git_repository, repo);
6262

63-
rugged_exception_check(git_refdb_open(&refdb, repo));
63+
rugged_exception_check(git_refdb_open(&refdb, repo));
6464

65-
return Data_Wrap_Struct(klass, NULL, git_refdb_free, refdb);
66-
}
65+
return Data_Wrap_Struct(klass, NULL, git_refdb_free, refdb);
66+
}
6767

6868
/*
6969
* call-seq:

0 commit comments

Comments
 (0)