diff --git a/sql.go b/sql.go index d712b12..924c5ee 100644 --- a/sql.go +++ b/sql.go @@ -962,10 +962,10 @@ func getSQLListID64(q string) []int64 { func cleanupJobData() { var ( - jobID int64 - count int64 - countDeleted int64 - isDone int + jobID int64 + count int64 + countObjDeleted int64 + isDone int ) jobStmt, err := db.Prepare(`SELECT o.id FROM obj o WHERE o.obj_type_id = ` + strconv.FormatInt(cacheObjType[`job`], 10) + `;`) @@ -1040,7 +1040,7 @@ func cleanupJobData() { count += 1 } - log.Printf("cleanupJobData : %d jobs scanned, %d obj deleted\n", count, countDeleted) + log.Printf("cleanupJobData : %d jobs scanned, %d obj deleted\n", count, countObjDeleted) /* for _, id := range ids {