mirror of
https://github.com/curl/curl.git
synced 2026-08-13 06:40:53 +03:00
added a cast to silent compiler warning with 64bit systems.
This commit is contained in:
parent
5ccd7c1807
commit
32edba1999
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ static const char *getcmdid(struct connectdata *conn)
|
|||
struct imap_conn *imapc = &conn->proto.imapc;
|
||||
|
||||
/* get the next id, but wrap at end of table */
|
||||
imapc->cmdid = (imapc->cmdid+1)% (sizeof(ids)/sizeof(ids[0]));
|
||||
imapc->cmdid = (int)((imapc->cmdid+1) % (sizeof(ids)/sizeof(ids[0])));
|
||||
|
||||
return ids[imapc->cmdid];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue