~ubuntu-branches/ubuntu/precise/fwts/precise-updates

« back to all changes in this revision

Viewing changes to src/acpi/method/method.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin King
  • Date: 2011-04-05 12:44:07 UTC
  • Revision ID: james.westby@ubuntu.com-20110405124407-dfvk1og3z8xibu5f
Tags: 0.22.13
* fix minor typos and error messages (LP: #751248)
* debian: control: fix typos
* acpi: method: fix typo in THERM check.
* acpi: method: fix false alert with THERM check.
* acpi: wmi: fix guidstr: should be all in uppercase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1148
1148
                                method,
1149
1149
                                (uint32_t)obj->Integer.Value,
1150
1150
                                (float)((uint32_t)obj->Integer.Value) / 10.0);
1151
 
                else
1152
 
                        fwts_failed(fw, "%s returned a debious value below 0 degrees C: 0x%8.8x (%5.1f degrees K)",
 
1151
                else {
 
1152
                        fwts_failed(fw, "%s returned a dubious value below 0 degrees C: 0x%8.8x (%5.1f degrees K)",
1153
1153
                                method,
1154
1154
                                (uint32_t)obj->Integer.Value,
1155
1155
                                (float)((uint32_t)obj->Integer.Value) / 10.0);
1158
1158
                                        "I/O ports or the embedded controller and this test frame work is spoofing "
1159
1159
                                        "these operations. However, it is worth sanity checking these values in "
1160
1160
                                        "/sys/class/thermal/thermal_zone*.");
 
1161
                }
1161
1162
        }
1162
1163
}
1163
1164