From 0183e3ed10c551fefdbb0ed095d896cf01699a54 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Mon, 18 Mar 2013 13:13:48 -0400
Subject: blocks: removing lfsr and friends from core; now in gr-blocks.

---
 gr-blocks/lib/check_lfsr_32k_s_impl.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'gr-blocks/lib/check_lfsr_32k_s_impl.cc')

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);
     }
 
-- 
cgit v1.2.3