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) {
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:
You can’t perform that action at this time.
0 commit comments