Mercurial > hg > octave-nkf
changeset 18984:dd57ca9ef7e4
Add missing newline to error message from mkoctfile.
* mkoctfile.in.cc: Add missing std::endl to error for unrecognized argument.
author | Rik <rik@octave.org> |
---|---|
date | Tue, 03 Jun 2014 09:07:02 -0700 |
parents | 1514f5337781 |
children | b422ba27951c |
files | src/mkoctfile.in.cc |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/mkoctfile.in.cc +++ b/src/mkoctfile.in.cc @@ -530,7 +530,7 @@ } else { - std::cerr << "mkoctfile: unrecognized argument " << arg; + std::cerr << "mkoctfile: unrecognized argument " << arg << std::endl; return 1; } @@ -649,8 +649,8 @@ } else { - std::cerr << "mkoctfile: no way to compile Fortran file " - << f << std::endl; + std::cerr << "mkoctfile: no way to compile Fortran file " << f + << std::endl; return 1; } }