Merge remote-tracking branch 'battery/for-next'
[deliverable/linux.git] / drivers / acpi / acpica / dbobject.c
index 1d59e8b6f8594af208e81f86b6f62ac49de65e0d..08eaaf350b24dcb7998fd007842a54769067810f 100644 (file)
@@ -142,11 +142,11 @@ void acpi_db_decode_internal_object(union acpi_operand_object *obj_desc)
 
        case ACPI_TYPE_STRING:
 
-               acpi_os_printf("(%u) \"%.24s",
+               acpi_os_printf("(%u) \"%.60s",
                               obj_desc->string.length,
                               obj_desc->string.pointer);
 
-               if (obj_desc->string.length > 24) {
+               if (obj_desc->string.length > 60) {
                        acpi_os_printf("...");
                } else {
                        acpi_os_printf("\"");
This page took 0.02483 seconds and 5 git commands to generate.