aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2016-09-06 15:43:24 +0200
committerDmitry Vyukov <dvyukov@google.com>2016-09-06 15:43:24 +0200
commite3e75519de15fa6d079d27be394ab7b559f831ae (patch)
tree249970adf626886f0555f3a0ee6e37be68e8e808 /tools
parentf8db312d79e68606fc741d9b4e27fab8e6321fcd (diff)
execprog: remove debug leftover
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-execprog/execprog.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go
index 93097d0f8..d331c4e5d 100644
--- a/tools/syz-execprog/execprog.go
+++ b/tools/syz-execprog/execprog.go
@@ -90,7 +90,7 @@ func main() {
posMu.Lock()
idx := pos
pos++
- if /*idx%len(progs) == 0 && time.Since(lastPrint) > 5*time.Second*/ (idx % 10) == 0 {
+ if idx%len(progs) == 0 && time.Since(lastPrint) > 5*time.Second {
log.Printf("executed programs: %v", idx)
lastPrint = time.Now()
}