Alphabetical

This commit is contained in:
Jasmine Iwanek
2022-01-31 05:29:14 -05:00
parent 44fd5b10ac
commit 1ed4af662c

View File

@@ -408,7 +408,7 @@ device_get_name(const device_t *d, int bus, char *name)
/* Then change string from ISA16 to ISA if applicable. */
if (!strcmp(sbus, "ISA16"))
sbus = "ISA";
else if (!strcmp(sbus, "LPT")|| !strcmp(sbus, "COM")) {
else if (!strcmp(sbus, "COM")|| !strcmp(sbus, "LPT")) {
sbus = NULL;
strcat(name, d->name);
return;