diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-10-22 09:21:07 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-10-22 09:21:07 -0400 |
commit | beae08be99f41731899697ae9d18c9c20f8629e4 (patch) | |
tree | 52ff0446e3b6d72b7c5f7214a7792e314a7722c0 /gr-blocks/lib/multiply_matrix_cc_impl.cc | |
parent | 3f318477ae779ff4cd46728dd223ed092c5b5b1b (diff) |
blocks: fixed use of "not" for "!".
Diffstat (limited to 'gr-blocks/lib/multiply_matrix_cc_impl.cc')
-rw-r--r-- | gr-blocks/lib/multiply_matrix_cc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/multiply_matrix_cc_impl.cc b/gr-blocks/lib/multiply_matrix_cc_impl.cc index 55f2262e57..eaa902ec49 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."); } } |