commit | 0486497e2b5f4d36fa968a1a60fea358cbf70b65 | [log] [tgz] |
---|---|---|
author | Michal Simek <michal.simek@xilinx.com> | Fri Feb 07 13:04:10 2020 +0100 |
committer | Michal Simek <michal.simek@xilinx.com> | Mon Apr 06 12:52:45 2020 +0200 |
tree | 09a7a0abdb8b1075f107e89419d39b1d1d9fa2b7 | |
parent | 352f86bf8658ec32d9e64f2d1b9134be6f8555e5 [diff] |
lib: Improve _parse_integer_fixup_radix base 16 detection Base autodetection is failing for this case: if test 257 -gt 3ae; then echo first; else echo second; fi It is because base for 3ae is recognized by _parse_integer_fixup_radix() as 10. The code detects the first char which is not between 'a'/'A' or 'f'/'F' to change base from dec to hex. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Shiril Tichkule <shirilt@xlinx.com>