mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
changed apostrophe
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@274 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
parent
0d91df3cbf
commit
ce5ddb4e52
1 changed files with 4 additions and 4 deletions
|
@ -118,10 +118,10 @@ int main(int argc, char *argv[])
|
|||
case '?':
|
||||
if (optopt == 'c')
|
||||
error("Option -%c requires an argument.", optopt);
|
||||
else if (isprint (optopt))
|
||||
error("Unknown option `-%c'.", optopt);
|
||||
else if (isprint(optopt))
|
||||
error("Unknown option '-%c'.", optopt);
|
||||
else
|
||||
error("Unknown option character `\\x%x'.", optopt);
|
||||
error("Unknown option character '\\x%x'.", optopt);
|
||||
exit(1);
|
||||
default:
|
||||
abort ();
|
||||
|
@ -130,7 +130,7 @@ int main(int argc, char *argv[])
|
|||
continue;
|
||||
check:
|
||||
if (optarg == endptr)
|
||||
error("Failed to parse parse option argument -%c %s", c, optarg);
|
||||
error("Failed to parse parse option argument '-%c %s'", c, optarg);
|
||||
}
|
||||
|
||||
if (!strcmp(argv[2], "rtt"))
|
||||
|
|
Loading…
Add table
Reference in a new issue