summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye2010-11-26 17:41:03 -0700
committerRob Savoye2010-11-26 17:41:03 -0700
commit6120aac92f3a2525a49364000a48d9f6e8b285b1 (patch)
tree1a6ed8dda0bc310c75e62155eb273f0f17143cba
parent28c2d2bf31a088a6748dc030e2c531dbfda3bde1 (diff)
downloadgnuradio-6120aac92f3a2525a49364000a48d9f6e8b285b1.tar.gz
gnuradio-6120aac92f3a2525a49364000a48d9f6e8b285b1.tar.bz2
gnuradio-6120aac92f3a2525a49364000a48d9f6e8b285b1.zip
make less verbose
-rw-r--r--gr-run-waveform/xyzzy.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/gr-run-waveform/xyzzy.cc b/gr-run-waveform/xyzzy.cc
index c60d6596c..72e19dd13 100644
--- a/gr-run-waveform/xyzzy.cc
+++ b/gr-run-waveform/xyzzy.cc
@@ -96,7 +96,6 @@ XYZZY::init(const std::string &file)
// cout << name << endl;
// Get the contents, which is one big string
- cerr << "Contents offset: " << entry->offset_to_contents << endl;
in.seekg(header->offset_to_strings + entry->offset_to_contents);
string contents = XYZZY::read_string(in);
// cout << contents << endl;
@@ -153,7 +152,6 @@ XYZZY::read_string(std::ifstream &stream)
stream.read(reinterpret_cast<char *>(&length), sizeof(boost::uint32_t));
boost::uint32_t len = __builtin_bswap32(length);
- cerr << "String Length is: " << len << endl;
// All the strings are 32 bit word aligned, so we have to adjust
// how many bytes to read.
size_t padding = sizeof(boost::uint32_t) - (len % sizeof(boost::uint32_t));