diff options
Diffstat (limited to 'gr-blocks/lib/check_lfsr_32k_s_impl.cc')
-rw-r--r-- | gr-blocks/lib/check_lfsr_32k_s_impl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/lib/check_lfsr_32k_s_impl.cc b/gr-blocks/lib/check_lfsr_32k_s_impl.cc index b8e88003a2..5664067591 100644 --- a/gr-blocks/lib/check_lfsr_32k_s_impl.cc +++ b/gr-blocks/lib/check_lfsr_32k_s_impl.cc @@ -40,7 +40,7 @@ namespace gr { } check_lfsr_32k_s_impl::check_lfsr_32k_s_impl() - : gr_sync_block("gr_check_lfsr_32k", + : gr_sync_block("check_lfsr_32k", gr_make_io_signature(1, 1, sizeof(short)), gr_make_io_signature(0, 0, 0)), d_state(SEARCHING), d_history(0), d_ntotal(0), d_nright(0), @@ -127,7 +127,7 @@ namespace gr { d_index = 0; // reset LFSR to beginning if(0) - fprintf(stdout, "gr_check_lfsr_32k: enter_SEARCHING at offset %8ld (0x%08lx)\n", + fprintf(stdout, "check_lfsr_32k: enter_SEARCHING at offset %8ld (0x%08lx)\n", d_ntotal, d_ntotal); enter_MATCH0(); @@ -162,7 +162,7 @@ namespace gr { d_index = 3; // already matched first 3 items if(0) - fprintf(stdout, "gr_check_lfsr_32k: enter_LOCKED at offset %8ld (0x%08lx)\n", + fprintf(stdout, "check_lfsr_32k: enter_LOCKED at offset %8ld (0x%08lx)\n", d_ntotal, d_ntotal); } @@ -171,7 +171,7 @@ namespace gr { { if(0) fprintf(stdout, - "gr_check_lfsr_32k: expected %5d (0x%04x) got %5d (0x%04x) offset %8ld (0x%08lx)\n", + "check_lfsr_32k: expected %5d (0x%04x) got %5d (0x%04x) offset %8ld (0x%08lx)\n", expected, expected, actual, actual, d_ntotal, d_ntotal); } |