aboutsummaryrefslogtreecommitdiffstats
path: root/tools/execprog
diff options
context:
space:
mode:
Diffstat (limited to 'tools/execprog')
-rw-r--r--tools/execprog/execprog.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/execprog/execprog.go b/tools/execprog/execprog.go
index 02cf5df00..471808b6c 100644
--- a/tools/execprog/execprog.go
+++ b/tools/execprog/execprog.go
@@ -88,7 +88,7 @@ func main() {
}
for {
idx := int(atomic.AddUint32(&pos, 1) - 1)
- if idx%len(progs) == 0{
+ if idx%len(progs) == 0 {
log.Printf("executed %v programs\n", idx)
}
if !*flagLoop && idx >= len(progs) {