Skip to content

Commit

Permalink
Fixed compilation warnings for x64 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
achaloyan committed Mar 9, 2010
1 parent af218b9 commit 47f78f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/mrcpv2-transport/src/mrcp_client_connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ MRCP_DECLARE(void) mrcp_client_connection_timeout_set(
mrcp_connection_agent_t *agent,
apr_size_t timeout)
{
agent->request_timeout = timeout;
agent->request_timeout = (apr_uint32_t)timeout;
}

/** Get task */
Expand Down
2 changes: 1 addition & 1 deletion libs/uni-rtsp/src/rtsp_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ RTSP_DECLARE(rtsp_client_t*) rtsp_client_create(

client->sub_pool = apt_subpool_create(pool);
client->connection_list = NULL;
client->request_timeout = request_timeout;
client->request_timeout = (apr_uint32_t)request_timeout;
return client;
}

Expand Down

0 comments on commit 47f78f9

Please sign in to comment.