summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-12 17:07:54 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-12 17:07:54 +0200
commit5811bcaf522a0a1c95861b4222c8a9a8da3ff358 (patch)
tree04ae8a0ade0daeadd5d8f6830f60182fe98f4f7b
parent0aa9d6c020fc737d62ad2c784a5e431beb308996 (diff)
typo
-rwxr-xr-xbuild_dataset.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/build_dataset.pl b/build_dataset.pl
index fa13795..d00140e 100755
--- a/build_dataset.pl
+++ b/build_dataset.pl
@@ -53,7 +53,8 @@ for ($i = 0; $i < $count; $i++) {
$dst = $dir . sprintf("B/frame%03d.png", $i);
system("ln", "-s", $src, $dst);
- if (($i % 100) == 0)
- print $i . "...\n";
+ if (($i % 100) == 0) {
+ print $i . "...\n";
+ }
}
print "Done\n";