Skip to content

Commit

Permalink
Change a return_ACPI_STATUS (AE_BAD_PARAMETER); to simply
Browse files Browse the repository at this point in the history
return (AE_BAD_PARAMETER); to fix compilation on MSVC.
  • Loading branch information
acpibob committed Dec 9, 2021
1 parent 35069f7 commit ff80327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/components/tables/tbdata.c
Expand Up @@ -418,7 +418,7 @@ AcpiTbAcquireTempTable (

if (!Table)
{
return_ACPI_STATUS (AE_BAD_PARAMETER);
return (AE_BAD_PARAMETER);
}

break;
Expand Down

0 comments on commit ff80327

Please sign in to comment.