go-ipfs-config: fix(config, eventlog) use int. it plays nicely with everyone else
Brian Tiger Chow committed
Feb 3, 2015 at 17:19 UTC
8c84f214f68da2fe768c484e0051b5291cadc84e
1 file changed
+3
-3
config/log.go
+3
-3
@@ -2,7 +2,7 @@ package config
2
3
4
type Log struct {
5
- MaxSizeMB uint64
6
- MaxBackups uint64
7
- MaxAgeDays uint64
5
+ MaxSizeMB int
6
+ MaxBackups int
7
+ MaxAgeDays int
8
}