From 84ac082bc4e1d267abaa1d41d0619884366aa797 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 14 May 2017 18:41:58 +0200 Subject: [PATCH] Fixed the last stray goto abort. --- src/ide.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ide.c b/src/ide.c index 6268b38ae..f90ead29d 100644 --- a/src/ide.c +++ b/src/ide.c @@ -705,7 +705,7 @@ static int ide_set_features(IDE *ide) case 0x04: /* Multiword DMA mode */ if (!PCI || (hdc[ide->hdc_num].bus != 3) || (ide->board >= 2) || (submode > 2)) { - goto abort; + return 0; } ide->mdma_mode = (1 << submode); break;