diff options
author | Nikias Bassen | 2012-02-12 23:24:39 +0100 |
---|---|---|
committer | Nikias Bassen | 2012-02-12 23:24:39 +0100 |
commit | ad7b4f149f203e174df2b0e49d3e22cac034339c (patch) | |
tree | 74c449d09b99a1cbd22b85d2745e0f80049701a5 | |
parent | 224fb3cc76a4b0249158ebe2ec78b823500dd420 (diff) | |
download | idevicerestore-ad7b4f149f203e174df2b0e49d3e22cac034339c.tar.gz idevicerestore-ad7b4f149f203e174df2b0e49d3e22cac034339c.tar.bz2 |
libirecovery: fix debug message
-rw-r--r-- | src/libirecovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c index 1b3b9ee..3545fd0 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -1187,7 +1187,7 @@ irecv_error_t irecv_get_nonce(irecv_client_t client, unsigned char** nonce, int* } if (i != nlen) { - debug("%s: ERROR: unable to parse nonce\n"); + debug("%s: ERROR: unable to parse nonce\n", __func__); free(nn); return IRECV_E_UNKNOWN_ERROR; } |