Update to support building against current HEAD #57

Closed
jezell wants to merge 3 commits from update-to-head into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bc83614ccc - Show all commits

View File

@ -170,7 +170,7 @@ func (repo *Repository) NewReferenceIterator() (*ReferenceIterator, error) {
// NewReferenceIteratorGlob creates an iterator over reference names // NewReferenceIteratorGlob creates an iterator over reference names
// that match the speicified glob. The glob is of the usual fnmatch // that match the speicified glob. The glob is of the usual fnmatch
// type. // type.
func (repo *Repository) NewReferenceIteratorGlob(glob string, signature *Signature, message string) (*ReferenceIterator, error) { func (repo *Repository) NewReferenceIteratorGlob(glob string) (*ReferenceIterator, error) {
cstr := C.CString(glob) cstr := C.CString(glob)
defer C.free(unsafe.Pointer(cstr)) defer C.free(unsafe.Pointer(cstr))
var ptr *C.git_reference_iterator var ptr *C.git_reference_iterator