diff options
author | CamVan Nguyen <ctnguyen@us.ibm.com> | 2012-01-31 23:26:38 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-02-07 11:40:32 -0600 |
commit | 7839259660f10f1b31db833fce37aa323e749f41 (patch) | |
tree | 522dcdc39a32916cffe62134e9ae63b5213f5084 /src/usr/hwpf/ifcompiler/initSymbols.C | |
parent | 29f47aee84ded4c6e59da561c2e9b6257590b31d (diff) | |
download | blackbird-hostboot-7839259660f10f1b31db833fce37aa323e749f41.tar.gz blackbird-hostboot-7839259660f10f1b31db833fce37aa323e749f41.zip |
SCOM Initfile - Support for using a range of index's for an array attribute
Change-Id: I87a23905c877281037b8610b6400b828f0578bec
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/636
Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/ifcompiler/initSymbols.C')
-rwxr-xr-x | src/usr/hwpf/ifcompiler/initSymbols.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/hwpf/ifcompiler/initSymbols.C b/src/usr/hwpf/ifcompiler/initSymbols.C index 156d021dc..68e18f01c 100755 --- a/src/usr/hwpf/ifcompiler/initSymbols.C +++ b/src/usr/hwpf/ifcompiler/initSymbols.C @@ -177,7 +177,7 @@ Symbols::Symbols(FILELIST & i_filenames) else { attr_enum_stream >> tmp; - value = strtoll(tmp.c_str(), NULL, 0); + value = strtoull(tmp.c_str(), NULL, 0); } } } |