summaryrefslogtreecommitdiff
path: root/gr-run-waveform
diff options
context:
space:
mode:
authorRob Savoye <rob@welcomehome.org>2010-11-26 17:41:03 -0700
committerRob Savoye <rob@welcomehome.org>2010-11-26 17:41:03 -0700
commit6120aac92f3a2525a49364000a48d9f6e8b285b1 (patch)
tree1a6ed8dda0bc310c75e62155eb273f0f17143cba /gr-run-waveform
parent28c2d2bf31a088a6748dc030e2c531dbfda3bde1 (diff)
make less verbose
Diffstat (limited to 'gr-run-waveform')
-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 c60d6596cd..72e19dd130 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));