Skip to content

Commit

Permalink
imapc: Compiler warning fix for 32bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Apr 3, 2017
1 parent b376929 commit aa11368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-imap-client/imapc-connection.c
Expand Up @@ -1801,7 +1801,7 @@ void imapc_connection_connect(struct imapc_connection *conn,
imapc_connection_input_reset(conn);

if (!conn->reconnect_ok &&
conn->last_connect + conn->client->set.connect_retry_interval_secs >= ioloop_time) {
(time_t)(conn->last_connect + conn->client->set.connect_retry_interval_secs) >= ioloop_time) {
if (conn->to != NULL)
timeout_remove(&conn->to);
conn->reconnecting = TRUE;
Expand Down

0 comments on commit aa11368

Please sign in to comment.