summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye2010-11-26 16:07:09 -0700
committerRob Savoye2010-11-26 16:07:09 -0700
commit1452e6a8ad83bb8506d0114abddcf1df92774be4 (patch)
treef8d3a5408d13c8acb0ff44b318b371ad702d41ea
parent9b7e9228428e3179f866fe73b088d85a2ecc2222 (diff)
downloadgnuradio-1452e6a8ad83bb8506d0114abddcf1df92774be4.tar.gz
gnuradio-1452e6a8ad83bb8506d0114abddcf1df92774be4.tar.bz2
gnuradio-1452e6a8ad83bb8506d0114abddcf1df92774be4.zip
drop the seekg()
-rw-r--r--gr-run-waveform/xyzzy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-run-waveform/xyzzy.cc b/gr-run-waveform/xyzzy.cc
index 89fc369d0..a5f43043a 100644
--- a/gr-run-waveform/xyzzy.cc
+++ b/gr-run-waveform/xyzzy.cc
@@ -94,7 +94,7 @@ XYZZY::init(const std::string &file)
// Read in the String Table
size_t total = header->number_of_dir_entries;
boost::uint32_t ssize;
- in.seekg(1540);
+ // in.seekg(1540);
while (total) {
// Read just the length part
in.read(reinterpret_cast<char *>(&ssize), sizeof(boost::uint32_t));