Skip to content
Snippets Groups Projects
Commit e5de6a94 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Fix typo in error message

parent 5308b870
No related branches found
No related tags found
No related merge requests found
......@@ -746,7 +746,7 @@ tool_args( int argc, char **argv )
case 'P':
ival = strtol( optarg, &next, 10 );
if ( next == NULL || next[0] != '\0' ) {
fprintf( stderr, "%s: unabel to parse protocol version \"%s\"\n", prog, optarg );
fprintf( stderr, "%s: unable to parse protocol version \"%s\"\n", prog, optarg );
exit( EXIT_FAILURE );
}
switch( ival ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment