diff --git a/src/xpdev/ini_file.c b/src/xpdev/ini_file.c index 1b2c746f002aa6e4b1301e3b662e6c09b054704c..3c8f1e18d327a9468fcb4514c8841f99b44a279b 100644 --- a/src/xpdev/ini_file.c +++ b/src/xpdev/ini_file.c @@ -732,8 +732,12 @@ char* iniSetHexInt(str_list_t* list, const char* section, const char* key, uint { char str[INI_MAX_VALUE_LEN] = "0"; - if(value) - SAFEPRINTF(str,"0x%x",value); + if(value) { + if(value < 10) + SAFEPRINTF(str,"%u",value); + else + SAFEPRINTF(str,"0x%x",value); + } return iniSetString(list, section, key, str, style); } @@ -742,8 +746,12 @@ char* iniSetHexInt64(str_list_t* list, const char* section, const char* key, uin { char str[INI_MAX_VALUE_LEN] = "0"; - if(value) - SAFEPRINTF(str,"0x%" PRIx64, value); + if(value) { + if(value < 10) + SAFEPRINTF(str,"%" PRIu64, value); + else + SAFEPRINTF(str,"0x%" PRIx64, value); + } return iniSetString(list, section, key, str, style); }