Skip to content

Commit

Permalink
blocks: fixed use of "not" for "!".
Browse files Browse the repository at this point in the history
  • Loading branch information
trondeau committed Oct 22, 2014
1 parent 3f31847 commit beae08b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gr-blocks/lib/multiply_matrix_cc_impl.cc
Expand Up @@ -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.");
}
}
Expand Down
2 changes: 1 addition & 1 deletion gr-blocks/lib/multiply_matrix_ff_impl.cc
Expand Up @@ -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.");
}
}
Expand Down

0 comments on commit beae08b

Please sign in to comment.