summaryrefslogtreecommitdiff
path: root/lib/debug.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-07-02 15:24:05 +0200
committerSimon Josefsson <simon@josefsson.org>2008-07-02 15:24:05 +0200
commitbade988016aa5d2936c6bdf53570125181cfe2f9 (patch)
tree65948be9cd75ccfb8fd2a6c26ad15caed4119cc5 /lib/debug.c
parent36f07088e2979bf28e52fec4992d3da04e73eb6c (diff)
downloadgnutls-bade988016aa5d2936c6bdf53570125181cfe2f9.tar.gz
Indent code.
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/debug.c b/lib/debug.c
index e63e8b019e..f60c4776cc 100644
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -125,6 +125,7 @@ _gnutls_dump_mpi (const char *prefix, bigint_t a)
if (_gnutls_mpi_print (a, mpi_buf, &n) < 0)
strcpy (buf, "[can't print value]"); /* Flawfinder: ignore */
- else _gnutls_bin2hex (mpi_buf, n, buf, sizeof(buf));
+ else
+ _gnutls_bin2hex (mpi_buf, n, buf, sizeof (buf));
_gnutls_hard_log ("MPI: length: %d\n\t%s%s\n", n, prefix, buf);
}