diff options
author | Peter Jones <pjones@redhat.com> | 2005-03-02 00:50:17 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-03-02 00:50:17 +0000 |
commit | f1a2589c2c518c5d6f68e1f5db460adf8c5e045b (patch) | |
tree | 8eae372bbe8a19dcb5bb591918171ff70093e244 | |
parent | d0937d10b3785ddefd4ef02c6cfccd9f712ba9e0 (diff) | |
download | anaconda-f1a2589c2c518c5d6f68e1f5db460adf8c5e045b.tar.gz anaconda-f1a2589c2c518c5d6f68e1f5db460adf8c5e045b.tar.xz anaconda-f1a2589c2c518c5d6f68e1f5db460adf8c5e045b.zip |
We never look for anything in the MP configuration data table, so treating
oem and product as signed are fine.
-rw-r--r-- | isys/smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isys/smp.c b/isys/smp.c index 1a84776fa..de2239f62 100644 --- a/isys/smp.c +++ b/isys/smp.c @@ -233,8 +233,8 @@ typedef struct MPCTH { uint16_t base_table_length; u_char spec_rev; u_char checksum; - u_char oem_id[ 8 ]; - u_char product_id[ 12 ]; + char oem_id[ 8 ]; + char product_id[ 12 ]; int32_t oem_table_pointer; uint16_t oem_table_size; uint16_t entry_count; |