aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-05-26 10:34:16 +0200
committerGitHub <noreply@github.com>2019-05-26 10:34:16 +0200
commit2cee28fd470d4e79ea7f3f279c4a686846302a04 (patch)
treeea16b787cb408ad6f86573c75fa5777948d78623
parentaa5a623bb3eaa3d460f94f97130698d00a18b395 (diff)
parent3b011bd326e8bc8d78fe30747c3b4585cbbde260 (diff)
downloadicestorm-2cee28fd470d4e79ea7f3f279c4a686846302a04.tar.gz
icestorm-2cee28fd470d4e79ea7f3f279c4a686846302a04.tar.bz2
icestorm-2cee28fd470d4e79ea7f3f279c4a686846302a04.zip
Merge pull request #218 from mbuesch/quiet
icepll: In quiet mode don't print info about target file name
-rw-r--r--icepll/icepll.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/icepll/icepll.cc b/icepll/icepll.cc
index 82bf3e3..689b362 100644
--- a/icepll/icepll.cc
+++ b/icepll/icepll.cc
@@ -314,7 +314,8 @@ int main(int argc, char **argv)
fclose(f);
- printf("PLL configuration written to: %s\n", filename);
+ if (!quiet)
+ printf("PLL configuration written to: %s\n", filename);
}
return 0;