1
0
mirror of https://github.com/Jguer/yay synced 2024-07-05 18:01:50 +00:00

Fix min()

This commit is contained in:
morganamilo 2018-03-08 04:07:51 +00:00
parent 0ae0df74f1
commit e6b36eaf74
No known key found for this signature in database
GPG Key ID: 6FE9E7996B0B082E

View File

@ -314,7 +314,7 @@ func min(a, b int) int {
if a < b {
return a
}
return a
return b
}
// Queries the aur for information about specified packages.