diff options
Diffstat (limited to 'gr-run-waveform')
-rw-r--r-- | gr-run-waveform/run_waveform.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-run-waveform/run_waveform.cc b/gr-run-waveform/run_waveform.cc index b96a99ad2..e34d7d58e 100644 --- a/gr-run-waveform/run_waveform.cc +++ b/gr-run-waveform/run_waveform.cc @@ -52,7 +52,7 @@ load_waveform (void) string file; while (std::getline(in, line)) { file += line; - cerr << line << endl; + cerr << line << endl; // FIXME: this is only for debugging } // Evaluate the file @@ -60,6 +60,7 @@ load_waveform (void) in.close(); + // Execute our example return scm_c_eval_string("(hello-world)"); } |