Module Name:    src
Committed By:   jruoho
Date:           Tue Jun 28 09:27:50 UTC 2011

Modified Files:
        src/sys/external/bsd/acpica/dist/debugger: dbdisply.c

Log Message:
More __UNCONST(3).


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/external/bsd/acpica/dist/debugger/dbdisply.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/bsd/acpica/dist/debugger/dbdisply.c
diff -u src/sys/external/bsd/acpica/dist/debugger/dbdisply.c:1.5 src/sys/external/bsd/acpica/dist/debugger/dbdisply.c:1.6
--- src/sys/external/bsd/acpica/dist/debugger/dbdisply.c:1.5	Tue Jun 28 09:04:29 2011
+++ src/sys/external/bsd/acpica/dist/debugger/dbdisply.c	Tue Jun 28 09:27:49 2011
@@ -105,11 +105,11 @@
 
 static ACPI_HANDLER_INFO    AcpiGbl_HandlerList[] =
 {
-    {&AcpiGbl_SystemNotify.Handler,     "System Notifications"},
-    {&AcpiGbl_DeviceNotify.Handler,     "Device Notifications"},
-    {&AcpiGbl_TableHandler,             "ACPI Table Events"},
-    {&AcpiGbl_ExceptionHandler,         "Control Method Exceptions"},
-    {&AcpiGbl_InterfaceHandler,         "OSI Invocations"}
+    {&AcpiGbl_SystemNotify.Handler,    __UNCONST("System Notifications")},
+    {&AcpiGbl_DeviceNotify.Handler,    __UNCONST("Device Notifications")},
+    {&AcpiGbl_TableHandler,            __UNCONST("ACPI Table Events")},
+    {&AcpiGbl_ExceptionHandler,        __UNCONST("Control Method Exceptions")},
+    {&AcpiGbl_InterfaceHandler,        __UNCONST("OSI Invocations")}
 };
 
 

Reply via email to