From 16fd3dbd697f25fb29da6d1841e8415bcc48762d Mon Sep 17 00:00:00 2001 From: Miki Date: Fri, 13 Nov 2015 12:58:09 +0100 Subject: [PATCH] . --- lastlogin_consolidate.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lastlogin_consolidate.go b/lastlogin_consolidate.go index 05a7607..eca313d 100644 --- a/lastlogin_consolidate.go +++ b/lastlogin_consolidate.go @@ -14,7 +14,7 @@ import ( ) const ( - _VERSION = "v1.0.8" + _VERSION = "v1.0.9" _tformat = "2006-01-02" _24h = (time.Hour * 23) + (time.Minute * 59) + (time.Second * 59) _10m = (time.Minute * 10) @@ -263,6 +263,6 @@ func main() { log.Printf("Stop %s: %s\n", ys[i], time.Since(pStart)) } - fmt.Printf("Stop: OK: %i - TOT: %i - Time: %s\n\r", countOK, countTOT, time.Since(start)) - log.Printf("Stop: OK: %i - TOT: %i - Time: %s\n\r", countOK, countTOT, time.Since(start)) + fmt.Printf("Stop: OK: %d - TOT: %d - Time: %s\n\r", countOK, countTOT, time.Since(start)) + log.Printf("Stop: OK: %d - TOT: %d - Time: %s\n\r", countOK, countTOT, time.Since(start)) }