commit | 14caa527e0b10e0aece119693bf003ec95929370 | [log] [tgz] |
---|---|---|
author | Norman James <njames@us.ibm.com> | Thu Dec 03 17:57:56 2015 -0600 |
committer | Norman James <njames@us.ibm.com> | Thu Dec 03 17:57:56 2015 -0600 |
tree | 4fde605dd8ce2ee017096d55bc860f00b6aaab76 | |
parent | 0a5fbf8cbc1b4964ff572ac19bbb5cd8eabdb469 [diff] |
set present to True/False
diff --git a/objects/pcie_slot_present_obj.c b/objects/pcie_slot_present_obj.c index 2efbc91..0cbc2d7 100644 --- a/objects/pcie_slot_present_obj.c +++ b/objects/pcie_slot_present_obj.c
@@ -151,9 +151,9 @@ //if (rc) { break; } // TODO: send correct state if (present == 0) { - update_fru_obj(c,&obj_info,"PRESENT"); + update_fru_obj(c,&obj_info,"True"); } else { - update_fru_obj(c,&obj_info,"NOT PRESENT"); + update_fru_obj(c,&obj_info,"False"); } } while(0); }