]> git.donarmstrong.com Git - bamtools.git/commitdiff
Fixed typo in error messages
authorderek <derekwbarnett@gmail.com>
Tue, 27 Sep 2011 15:46:40 +0000 (11:46 -0400)
committerderek <derekwbarnett@gmail.com>
Tue, 27 Sep 2011 15:46:40 +0000 (11:46 -0400)
src/api/internal/BamStandardIndex_p.cpp
src/api/internal/BamToolsIndex_p.cpp

index 11f570ae6b6c087ea2073a8477b55374792d4100..43f12ebf8838ce505180e11891e749c5313fcfd4 100644 (file)
@@ -263,7 +263,7 @@ bool BamStandardIndex::Create(void) {
     // open new index file (read & write)
     string indexFilename = m_reader->Filename() + Extension();
     if ( !OpenFile(indexFilename, "w+b") ) {
-        cerr << "BamStandardIndex ERROR: could not open ouput index file: " << indexFilename
+        cerr << "BamStandardIndex ERROR: could not open output index file: " << indexFilename
              << ", aborting index creation" << endl;
         return false;
     }
index f6e05ceab0cc96e84e8a96ab924d89743825820c..047ca6fec8df26683d0644cd228861e78e3279ac 100644 (file)
@@ -144,7 +144,7 @@ bool BamToolsIndex::Create(void) {
     // open new index file (read & write)
     string indexFilename = m_reader->Filename() + Extension();
     if ( !OpenFile(indexFilename, "w+b") ) {
-        cerr << "BamToolsIndex ERROR: could not open ouput index file " << indexFilename
+        cerr << "BamToolsIndex ERROR: could not open output index file " << indexFilename
              << ", aborting index creation" << endl;
         return false;
     }