Handle BASE_NONE as BASE_DEC for filter expression in custom columns.

This fixes bug 6035.

svn path=/trunk/; revision=37705
This commit is contained in:
Stig Bjørlykke 2011-06-19 10:15:05 +00:00
parent 35fd959d6d
commit 63e273c2c5
1 changed files with 1 additions and 0 deletions

View File

@ -6708,6 +6708,7 @@ hfinfo_numeric_value_format(const header_field_info *hfinfo)
} else {
/* Get the underlying BASE_ value */
switch(hfinfo->display & BASE_DISPLAY_E_MASK) {
case BASE_NONE:
case BASE_DEC:
case BASE_DEC_HEX:
case BASE_OCT: /* I'm lazy */