Browse Source

mconn-crypt: fix compiler warnings

bboozzoo/socket-source
Maciek Borzecki 9 years ago
parent
commit
5eff60734b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/crypt/mconn-crypt.c

+ 1
- 1
src/crypt/mconn-crypt.c View File

@ -176,7 +176,7 @@ static gchar *__mconn_get_public_key_as_pem(MconnCryptPrivate *priv)
/* get PEM as text */
char *oss_pubkey = NULL;
long data = BIO_get_mem_data(bm, &oss_pubkey);
g_debug("mconn-crypt: public key length: %l", data);
g_debug("mconn-crypt: public key length: %ld", data);
g_assert(data != 0);
g_assert(oss_pubkey != NULL);


Loading…
Cancel
Save