Skip to content

Commit

Permalink
ACPICA: fix stray va_end() caused by mis-merge
Browse files Browse the repository at this point in the history
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
lenb committed Jun 11, 2008
1 parent a39a2d7 commit 3549dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/utilities/utmisc.c
Expand Up @@ -1048,6 +1048,7 @@ acpi_ut_exception(char *module_name,
va_start(args, format);
acpi_os_vprintf(format, args);
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
va_end(args);
}

EXPORT_SYMBOL(acpi_ut_exception);
Expand All @@ -1063,7 +1064,6 @@ acpi_ut_warning(char *module_name, u32 line_number, char *format, ...)
acpi_os_vprintf(format, args);
acpi_os_printf(" [%X]\n", ACPI_CA_VERSION);
va_end(args);
va_end(args);
}

void ACPI_INTERNAL_VAR_XFACE
Expand Down

0 comments on commit 3549dba

Please sign in to comment.