bug fix get int8

This commit is contained in:
ethan.du 2020-04-16 15:08:36 +08:00
parent 822e33ad07
commit 771e7a4b76
1 changed files with 4 additions and 4 deletions

View File

@ -146,11 +146,11 @@ int LITE_get_int16(int16_t *value, char *src) {
*/
int LITE_get_int8(int8_t *value, char *src) {
int16_t temp = 0;
if(1 != sscanf(src, "%" SCNi16, temp))
if(1 != sscanf(src, "%" SCNi16, &temp))
{
return FAILURE_RET;
}
value = (int8_t)temp;
*value = (int8_t)temp;
return SUCCESS_RET;
}
@ -164,11 +164,11 @@ int LITE_get_uint16(uint16_t *value, char *src) {
int LITE_get_uint8(uint8_t *value, char *src) {
uint16_t temp = 0;
if(1 != sscanf(src, "%" SCNu16, temp))
if(1 != sscanf(src, "%" SCNu16, &temp))
{
return FAILURE_RET;
}
value = (uint8_t)temp;
*value = (uint8_t)temp;
return SUCCESS_RET;
}