* src/tools/apinames.c (main): Fix error message.

Reported as

  https://savannah.nongnu.org/patch/?9796
This commit is contained in:
JDG 2019-04-15 10:10:38 +02:00 committed by Werner Lemberg
parent 01aed76c68
commit 8837ac26d0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2019-04-15 JDG <JonathanG@iQmetrix.com>
* src/tools/apinames.c (main): Fix error message.
Reported as
https://savannah.nongnu.org/patch/?9796
2019-04-11 Alexei Podtelezhnikov <apodtele@gmail.com>
[smooth] Fix segfault in direct mode (#56092).

View File

@ -384,7 +384,7 @@ int main( int argc, const char* const* argv )
out = fopen( arg, "wt" );
if ( !out )
{
fprintf( stderr, "could not open '%s' for writing\n", argv[2] );
fprintf( stderr, "could not open '%s' for writing\n", arg );
exit(3);
}
break;