]> git.lizzy.rs Git - go-anidb.git/commitdiff
anidb: Correct syntax error
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>
Fri, 26 Jul 2013 15:25:13 +0000 (12:25 -0300)
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>
Fri, 26 Jul 2013 15:25:13 +0000 (12:25 -0300)
mylistcache.go

index 54d71c9c8e98cc24d47643c9981c27cc0c36a954..b0047317b7bebd2b7b754fe220cd93ecac6f5da0 100644 (file)
@@ -247,7 +247,7 @@ func (adb *AniDB) parseMylistReply(reply udpapi.APIReply) *MyListEntry {
                                if mla.Cached.IsZero() {
                                        // as attractive as such an ancient mtime would be,
                                        // few filesystems can represent it; just make it old enough
-                                       mla.Cached = time.Unix(0, 0),
+                                       mla.Cached = time.Unix(0, 0)
                                }
 
                                Cache.Set(mla, key...)