aboutsummaryrefslogtreecommitdiffstats
path: root/icepll
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2016-02-27 09:37:47 -0700
committerSebastian Kuzminsky <seb@highlab.com>2016-02-27 09:37:47 -0700
commit798eb5255644efe784855855561a77b14e6f6c3d (patch)
treec264b809886fa4d8eadfe9642596c8e1327e52fb /icepll
parent30cb298008df0d4cce8a5a6dcee45a68736e1338 (diff)
downloadicestorm-798eb5255644efe784855855561a77b14e6f6c3d.tar.gz
icestorm-798eb5255644efe784855855561a77b14e6f6c3d.tar.bz2
icestorm-798eb5255644efe784855855561a77b14e6f6c3d.zip
fix a few spelling errors
Diffstat (limited to 'icepll')
-rw-r--r--icepll/icepll.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/icepll/icepll.cc b/icepll/icepll.cc
index 261cf0a..7a3593d 100644
--- a/icepll/icepll.cc
+++ b/icepll/icepll.cc
@@ -84,12 +84,12 @@ int main(int argc, char **argv)
int best_divq = 0;
if (f_pllin < 10 || f_pllin > 133) {
- fprintf(stderr, "Error: PLL input freqency %.3f MHz is outside range 10 MHz - 133 MHz!\n", f_pllin);
+ fprintf(stderr, "Error: PLL input frequency %.3f MHz is outside range 10 MHz - 133 MHz!\n", f_pllin);
exit(1);
}
if (f_pllout < 16 || f_pllout > 275) {
- fprintf(stderr, "Error: PLL output freqency %.3f MHz is outside range 16 MHz - 275 MHz!\n", f_pllout);
+ fprintf(stderr, "Error: PLL output frequency %.3f MHz is outside range 16 MHz - 275 MHz!\n", f_pllout);
exit(1);
}