add log fataler to swarmd

This commit is contained in:
Victor Vieux 2014-11-14 00:15:13 +00:00
parent 498543bfd2
commit 0a969d2be7
1 changed files with 1 additions and 1 deletions

View File

@ -29,5 +29,5 @@ func main() {
log.Fatal(err) log.Fatal(err)
} }
} }
api.ListenAndServe(c, ":4243") log.Fatal(api.ListenAndServe(c, ":4243"))
} }