e_util: changed converting function to strtoul for unsigned long int type 22/126222/1 submit/tizen_3.0_tv/20170428.072425
authorGwanglim Lee <gl77.lee@samsung.com>
Thu, 20 Apr 2017 12:45:33 +0000 (21:45 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Thu, 20 Apr 2017 12:46:27 +0000 (21:46 +0900)
Change-Id: I1df52f33f66ea2e434356c1a116f3367b70ec624

src/bin/e_info_client.c
src/bin/e_utils.c

index e53f4d04b39676a3697e852fbe6aac249ba0f395..28875a2b4fcb7c2511399ff8941e4632bd04f5f2 100644 (file)
@@ -91,7 +91,7 @@ _util_string_to_uint(const char *str, unsigned int *num, int base)
    EINA_SAFETY_ON_NULL_RETURN_VAL(str, EINA_FALSE);
    EINA_SAFETY_ON_NULL_RETURN_VAL(num, EINA_FALSE);
 
-   const unsigned long int ul = strtol(str, &end, base);
+   const unsigned long int ul = strtoul(str, &end, base);
    errsv = errno;
 
    EINA_SAFETY_ON_TRUE_RETURN_VAL((end == str), EINA_FALSE); /* given string is not a decimal number */
index a2500a5adf38dfacec1d76852bea0d48c010fc62..9e9bbe07a6db775ee3b12504d3a7c5e4a312f5b8 100644 (file)
@@ -984,7 +984,7 @@ e_util_string_to_uint(const char *str, unsigned int *num, int base)
    EINA_SAFETY_ON_NULL_RETURN_VAL(str, EINA_FALSE);
    EINA_SAFETY_ON_NULL_RETURN_VAL(num, EINA_FALSE);
 
-   const unsigned long int ul = strtol(str, &end, base);
+   const unsigned long int ul = strtoul(str, &end, base);
    errsv = errno;
 
    EINA_SAFETY_ON_TRUE_RETURN_VAL((end == str), EINA_FALSE); /* given string is not a decimal number */