Yet another silly little byte saving. couldn't -> cannot

This commit is contained in:
Denis Vlasenko
2006-09-29 21:30:43 +00:00
parent 6c30db8bd3
commit a959588b80
17 changed files with 33 additions and 33 deletions

View File

@@ -158,7 +158,7 @@ int main(int argc, char** argv)
char *devname, *tmp;
int major, minor;
dev_t device;
const char *errmsg = "Couldn't parse %s: %s\n";
const char *errmsg = "Cannot parse %s: %s\n";
if ((argc != 2) && (argc != 3)) {
fprintf(stderr, "Usage: %s device_number\n", argv[0]);
@@ -191,7 +191,7 @@ int main(int argc, char** argv)
printf("Found device! %s\n", devname);
free(devname);
} else {
printf("Couldn't find device.\n");
printf("Cannot find device.\n");
}
return 0;
}