Merge pull request #218 from mbuesch/quiet

icepll: In quiet mode don't print info about target file name
This commit is contained in:
Clifford Wolf 2019-05-26 10:34:16 +02:00 committed by GitHub
commit 2cee28fd47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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;