vl.c: Remove periods and exclamation points from error messages

Except for removing periods and exclamation points, no other changes
were made to the error messages (yet).

Backports relevant parts of commit 8afb900030b93122a40ef4a636d02ba888bdce12 from qemu
This commit is contained in:
Eduardo Habkost 2018-02-17 14:55:05 -05:00 committed by Lioncash
parent 7343fe51d1
commit 9c26efb406
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -124,8 +124,8 @@ int machine_initialize(struct uc_struct *uc)
// this will auto initialize all register objects above.
machine_class = find_default_machine(uc, uc->arch);
if (machine_class == NULL) {
// error_report("No machine specified, and there is no default.");
// error_printf("Use -machine help to list supported machines!\n");
// error_report("No machine specified, and there is no default");
// error_printf("Use -machine help to list supported machines\n");
return -2;
}