From: Nikos Mavrogiannopoulos Date: Mon, 3 Oct 2011 15:12:25 +0000 (+0200) Subject: replaced uint type. X-Git-Tag: gnutls_3_0_4~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb3aebc6c20b360d2847af3df08fe198281419c2;p=thirdparty%2Fgnutls.git replaced uint type. --- diff --git a/lib/gnutls_dtls.c b/lib/gnutls_dtls.c index 7f4bab6b55..16a617979a 100644 --- a/lib/gnutls_dtls.c +++ b/lib/gnutls_dtls.c @@ -45,7 +45,7 @@ transmit_message (gnutls_session_t session, opaque *data, *mtu_data; int ret = 0; unsigned int offset, frag_len, data_size; - const uint mtu = gnutls_dtls_get_data_mtu(session) - DTLS_HANDSHAKE_HEADER_SIZE; + const unsigned int mtu = gnutls_dtls_get_data_mtu(session) - DTLS_HANDSHAKE_HEADER_SIZE; if (bufel->type == GNUTLS_CHANGE_CIPHER_SPEC) {