* src/tools/apinames.c (main): Fix error message.
Reported as https://savannah.nongnu.org/patch/?9796
This commit is contained in:
parent
01aed76c68
commit
8837ac26d0
|
@ -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).
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue