[sources] Minor compiler complaint fixup.

This commit is contained in:
Ciprian Dorin Craciun 2022-09-07 10:14:50 +03:00
parent fe82980b7a
commit d1af5b75aa
5 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ import . "github.com/volution/kawipiko/cmd/archiver"
func main () () {
func main () {
Main ()
}

View file

@ -15,7 +15,7 @@ import "github.com/valyala/fasthttp/reuseport"
func main () () {
func main () {
runtime.GOMAXPROCS (1)

View file

@ -8,7 +8,7 @@ import . "github.com/volution/kawipiko/cmd/server"
func main () () {
func main () {
Main ()
}

View file

@ -13,7 +13,7 @@ import "github.com/volution/kawipiko/cmd/version"
func main () () {
func main () {
if len (os.Args) >= 2 {

View file

@ -40,7 +40,7 @@ var UNAME_FINGERPRINT string = "{unknown-fingerprint}"
func init () () {
func init () {
var _uname unix.Utsname
if _error := unix.Uname (&_uname); _error != nil {