Re: dsdt: error while compiling with ACPI_MEMDEBUG

2017-04-14 Thread Philip Guenther
On Fri, 14 Apr 2017, Anton Lindqvist wrote: > While compiling the GENERIC.MP kernel on amd64 with ACPI_MEMDEBUG > defined, I get the following error: > > dsdt.c:411: warning: format '%x' expects type 'unsigned int', but > argument 4 has type 'long int' > > Adding the 'l' modifier fixes the erro

dsdt: error while compiling with ACPI_MEMDEBUG

2017-04-14 Thread Anton Lindqvist
Hi, While compiling the GENERIC.MP kernel on amd64 with ACPI_MEMDEBUG defined, I get the following error: dsdt.c:411: warning: format '%x' expects type 'unsigned int', but argument 4 has type 'long int' Adding the 'l' modifier fixes the error. Index: dsdt.c ==