summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-01-10 19:49:52 +0000
committerWerner Koch <wk@gnupg.org>2002-01-10 19:49:52 +0000
commit2c81bbf76baaacfbdbc786bb31e5212f10da156b (patch)
tree34147c1b3d6b9bb136e2aa18260e9144b8743010
parent48ee588fd3c9c9dc0f3a04ea3ea2721e137c345d (diff)
downloadlibgcrypt-2c81bbf76baaacfbdbc786bb31e5212f10da156b.tar.gz
fixed indentation
-rw-r--r--src/ChangeLog4
-rw-r--r--src/stdmem.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5deb6ee4..0b80d33e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,7 +1,7 @@
2002-01-01 Timo Schulz <ts@winpt.org>
- * stdmem.c (_gcry_private_realloc): if pointer is NULL now
- realloc behaves like malloc.
+ * stdmem.c (_gcry_private_realloc): if pointer is NULL now realloc
+ behaves like malloc.
2001-12-20 Werner Koch <wk@gnupg.org>
diff --git a/src/stdmem.c b/src/stdmem.c
index d27b4aa0..1cfe62ff 100644
--- a/src/stdmem.c
+++ b/src/stdmem.c
@@ -113,8 +113,8 @@ _gcry_private_realloc( void *a, size_t n )
void *b;
size_t len;
- if (!a)
- return _gcry_private_malloc(n);
+ if (!a)
+ return _gcry_private_malloc(n);
_gcry_private_check_heap(p);
len = p[-4];