fix return for old go versions / travis

This commit is contained in:
Jesse Ezell 2014-03-11 13:45:27 -07:00
parent 2f53196866
commit 0a172478dc
1 changed files with 1 additions and 2 deletions

View File

@ -62,9 +62,8 @@ func (p *Push) UnpackOk() bool {
ret := C.git_push_unpack_ok(p.ptr)
if ret == 0 {
return false
} else {
return true
}
return true
}