Fix a warning about deprecated string literals.

Reviewed by:	diff
This commit is contained in:
Nate Lawson 2003-04-15 05:15:50 +00:00
parent f7130d0977
commit d6c5005c05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113499

View File

@ -71,14 +71,14 @@ acpi_print_dsdt_definition(void)
strncpy(oemtblid, dsdt_header.oemtblid, 8);
oemtblid[8] = '\0';
printf("DefinitionBlock (
\"acpi_dsdt.aml\", //Output filename
\"DSDT\", //Signature
0x%x, //DSDT Revision
\"%s\", //OEMID
\"%s\", //TABLE ID
0x%x //OEM Revision\n)\n",
dsdt_header.rev, oemid, oemtblid, dsdt_header.oemrev);
printf("DefinitionBlock (\n"
" \"acpi_dsdt.aml\", //Output filename\n"
" \"DSDT\", //Signature\n"
" 0x%x, //DSDT Revision\n"
" \"%s\", //OEMID\n"
" \"%s\", //TABLE ID\n"
" 0x%x //OEM Revision\n)\n",
dsdt_header.rev, oemid, oemtblid, dsdt_header.oemrev);
}
static void