diff options
author | 2018-12-09 11:32:02 +0000 | |
---|---|---|
committer | 2018-12-09 11:32:02 +0000 | |
commit | e23a8110a259bcb576f3065ae52e3ea83bf12f17 (patch) | |
tree | af569456d40e1ae3d2236c05950c17c711b31e53 /lib/libc/stdlib/malloc.c | |
parent | revert previous, it breaks regress and the llvm, gtk+2, and gtk+3 ports (diff) | |
download | wireguard-openbsd-e23a8110a259bcb576f3065ae52e3ea83bf12f17.tar.xz wireguard-openbsd-e23a8110a259bcb576f3065ae52e3ea83bf12f17.zip |
style; OK otto
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 7d5affbc2da..5f5bd5d45be 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.c,v 1.255 2018/11/27 17:29:55 otto Exp $ */ +/* $OpenBSD: malloc.c,v 1.256 2018/12/09 11:32:02 florian Exp $ */ /* * Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net> * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> @@ -260,8 +260,8 @@ hash(void *p) return sum; } -static inline -struct dir_info *getpool(void) +static inline struct dir_info * +getpool(void) { if (!mopts.malloc_mt) return mopts.malloc_pool[0]; |