[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: blocks: fixed use of "not" for "!".
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: blocks: fixed use of "not" for "!". |
Date: |
Thu, 23 Oct 2014 22:03:07 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch maint
in repository gnuradio.
commit beae08be99f41731899697ae9d18c9c20f8629e4
Author: Tom Rondeau <address@hidden>
Date: Wed Oct 22 09:21:07 2014 -0400
blocks: fixed use of "not" for "!".
---
gr-blocks/lib/multiply_matrix_cc_impl.cc | 2 +-
gr-blocks/lib/multiply_matrix_ff_impl.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gr-blocks/lib/multiply_matrix_cc_impl.cc
b/gr-blocks/lib/multiply_matrix_cc_impl.cc
index 55f2262..eaa902e 100644
--- a/gr-blocks/lib/multiply_matrix_cc_impl.cc
+++ b/gr-blocks/lib/multiply_matrix_cc_impl.cc
@@ -170,7 +170,7 @@ namespace gr {
}
}
- if (not set_A(new_A)) {
+ if (!set_A(new_A)) {
GR_LOG_ALERT(d_logger, "Invalid message to set A.");
}
}
diff --git a/gr-blocks/lib/multiply_matrix_ff_impl.cc
b/gr-blocks/lib/multiply_matrix_ff_impl.cc
index 808e0ce..fb0a6d5 100644
--- a/gr-blocks/lib/multiply_matrix_ff_impl.cc
+++ b/gr-blocks/lib/multiply_matrix_ff_impl.cc
@@ -170,7 +170,7 @@ namespace gr {
}
}
- if (not set_A(new_A)) {
+ if (!set_A(new_A)) {
GR_LOG_ALERT(d_logger, "Invalid message to set A.");
}
}