File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,16 @@ static VALUE rb_git_refdb_new(VALUE klass, VALUE rb_repo) {
54
54
* Create a new reference database with the default filesystem
55
55
* backend.
56
56
*/
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 ;
60
60
61
- Data_Get_Struct (rb_repo , git_repository , repo );
61
+ Data_Get_Struct (rb_repo , git_repository , repo );
62
62
63
- rugged_exception_check (git_refdb_open (& refdb , repo ));
63
+ rugged_exception_check (git_refdb_open (& refdb , repo ));
64
64
65
- return Data_Wrap_Struct (klass , NULL , git_refdb_free , refdb );
66
- }
65
+ return Data_Wrap_Struct (klass , NULL , git_refdb_free , refdb );
66
+ }
67
67
68
68
/*
69
69
* call-seq:
You can’t perform that action at this time.
0 commit comments