r3824: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 21 Jan 2003 03:05:36 +0000 (03:05 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 21 Jan 2003 03:05:36 +0000 (03:05 +0000)
wdq2wav.cpp
wdq2wav.h

index 592466ba657b00fb70f8bd166a9f4fccfe97adfa..90120796e7df159c6ac4b459896e3c03ac29fc0b 100644 (file)
@@ -16,7 +16,7 @@
 **   Need command line options for verbose and debug output
 **   Should comment the reading and writing of files to document the file formats
 **
-**  $Id: wdq2wav.cpp,v 1.3 2003/01/21 03:04:27 kevin Exp $
+**  $Id: wdq2wav.cpp,v 1.4 2003/01/21 03:05:03 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -371,7 +371,7 @@ WavFile::WriteFile ()
     if ((m_fd = open (m_strFile.c_str(), O_WRONLY | O_TRUNC | O_CREAT, 
                      S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) == 0) {
       std::ostringstream os;
-      os << "Error opening output file ", << m_strFile.c_str();
+      os << "Error opening output file " << m_strFile.c_str();
       error_msg (os);
       return false;
     }
index e0f2e5019930ba69cefc4377149a6e0710eea864..9e83af9d45668084b1c38a25aaa875f0ec5af47e 100644 (file)
--- a/wdq2wav.h
+++ b/wdq2wav.h
@@ -4,7 +4,7 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <unistd.h>
-#include <strstream>
+#include <sstream>
 
 
 class WindaqFile