diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-12 17:07:54 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-12 17:07:54 +0200 |
| commit | 5811bcaf522a0a1c95861b4222c8a9a8da3ff358 (patch) | |
| tree | 04ae8a0ade0daeadd5d8f6830f60182fe98f4f7b | |
| parent | 0aa9d6c020fc737d62ad2c784a5e431beb308996 (diff) | |
typo
| -rwxr-xr-x | build_dataset.pl | 5 |
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"; |
