summaryrefslogtreecommitdiff
path: root/lib/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/debug.c b/lib/debug.c
index a791ba3c69..ec4988af5e 100644
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -38,10 +38,10 @@ _gnutls_dump_mpi (const char *prefix, bigint_t a)
size_t n = sizeof buf;
if (_gnutls_mpi_print (a, buf, &n))
- strcpy (buf, "[can't print value]"); /* Flawfinder: ignore */
+ strcpy (buf, "[can't print value]"); /* Flawfinder: ignore */
_gnutls_debug_log ("MPI: length: %d\n\t%s%s\n", (int) n, prefix,
- _gnutls_bin2hex (buf, n, buf_hex, sizeof (buf_hex),
- NULL));
+ _gnutls_bin2hex (buf, n, buf_hex, sizeof (buf_hex),
+ NULL));
}