scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit 5320493627b753ec96db1e0ef46d7724634d4b82
parent 829aa28bdfe35b3c0357fd13164bfd1868298d7a
Author: sin <sin@2f30.org>
Date:   Thu,  1 Aug 2013 15:17:21 +0100

Rename `size' to `siz'

Diffstat:
Mrandom/rballoc.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/random/rballoc.c b/random/rballoc.c @@ -200,7 +200,7 @@ cfree(void *p) } int -posix_memalign(void **memptr, size_t align, size_t size) +posix_memalign(void **memptr, size_t align, size_t siz) { void *mem; @@ -213,7 +213,7 @@ posix_memalign(void **memptr, size_t align, size_t size) __func__, align); abort(); } - mem = malloc(size); + mem = malloc(siz); if (!mem) return ENOMEM; *memptr = mem;