diff --git a/include/bw_iir1.h b/include/bw_iir1.h
index b327d78..9582976 100644
--- a/include/bw_iir1.h
+++ b/include/bw_iir1.h
@@ -35,6 +35,8 @@
*
* - Version 1.0.1:
*
+ * - Fixed bug which resulted in bad coefficients in
+ *
bw_iir1_coeffs_hp1()
.
* - Updated dependencies.
*
*
@@ -553,7 +555,7 @@ static inline void bw_iir1_coeffs_hp1(
BW_IIR1_ASSERT_VALID_COEFF_PTRS
BW_IIR1_COEFFS_COMMON
- *b0 = d * (k - prewarp_freq);
+ *b0 = d * prewarp_freq;
*b1 = -*b0;
bw_iir1_assert_valid_coeffs(*b0, *b1, *a1);