mirror of
https://github.com/curl/curl.git
synced 2026-04-15 03:41:41 +03:00
less long => int implicit conversion warnings
This commit is contained in:
parent
be1df3ca0a
commit
2de62cb06f
1 changed files with 4 additions and 4 deletions
|
|
@ -224,11 +224,11 @@ static time_t Curl_parsedate(const char *date)
|
|||
time_t t = 0;
|
||||
int wdaynum=-1; /* day of the week number, 0-6 (mon-sun) */
|
||||
int monnum=-1; /* month of the year number, 0-11 */
|
||||
long mdaynum=-1; /* day of month, 1 - 31 */
|
||||
int mdaynum=-1; /* day of month, 1 - 31 */
|
||||
int hournum=-1;
|
||||
int minnum=-1;
|
||||
int secnum=-1;
|
||||
long yearnum=-1;
|
||||
int yearnum=-1;
|
||||
int tzoff=-1;
|
||||
struct tm tm;
|
||||
enum assume dignext = DATE_MDAY;
|
||||
|
|
@ -273,7 +273,7 @@ static time_t Curl_parsedate(const char *date)
|
|||
}
|
||||
else if(isdigit((int)*date)) {
|
||||
/* a digit */
|
||||
long val;
|
||||
int val;
|
||||
char *end;
|
||||
if((secnum == -1) &&
|
||||
(3 == sscanf(date, "%02d:%02d:%02d", &hournum, &minnum, &secnum))) {
|
||||
|
|
@ -282,7 +282,7 @@ static time_t Curl_parsedate(const char *date)
|
|||
found = TRUE;
|
||||
}
|
||||
else {
|
||||
val = strtol(date, &end, 10);
|
||||
val = (int)strtol(date, &end, 10);
|
||||
|
||||
if((tzoff == -1) &&
|
||||
((end - date) == 4) &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue