From e6177630198eb1eea2def0374fae1196da0e40ec Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Mon, 6 Sep 2010 17:20:33 +0200 Subject: Run Lindent on libtom(*) --- libtomcrypt/misc/zeromem.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libtomcrypt/misc/zeromem.c') diff --git a/libtomcrypt/misc/zeromem.c b/libtomcrypt/misc/zeromem.c index a4bb124..812ccc3 100644 --- a/libtomcrypt/misc/zeromem.c +++ b/libtomcrypt/misc/zeromem.c @@ -22,11 +22,11 @@ */ void zeromem(void *out, size_t outlen) { - unsigned char *mem = out; - LTC_ARGCHKVD(out != NULL); - while (outlen-- > 0) { - *mem++ = 0; - } + unsigned char *mem = out; + LTC_ARGCHKVD(out != NULL); + while (outlen-- > 0) { + *mem++ = 0; + } } /* $Source: /cvs/libtom/libtomcrypt/src/misc/zeromem.c,v $ */ -- cgit