From 6120aac92f3a2525a49364000a48d9f6e8b285b1 Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Fri, 26 Nov 2010 17:41:03 -0700 Subject: make less verbose --- gr-run-waveform/xyzzy.cc | 2 -- 1 file changed, 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(&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)); -- cgit