diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-08-27 17:48:24 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-08-27 17:48:24 +0200 |
commit | 52efd56a6369e19c2400a42981a197cd2eef924a (patch) | |
tree | f357473b0d192fb4cbe2d4ab1d558801bd740abc /src/basic | |
parent | 2f5b4a774a656d1da1daed604d3f4c15417c1897 (diff) |
tree-wide: we place the opening bracket on the same line as the function name
Let's do this everywhere the same way.
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/ring.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/basic/ring.h b/src/basic/ring.h index a7c44d1b56..dbd6296384 100644 --- a/src/basic/ring.h +++ b/src/basic/ring.h @@ -50,7 +50,6 @@ int ring_push(Ring *r, const void *u8, size_t size); void ring_pull(Ring *r, size_t size); /* return size of occupied buffer in bytes */ -static inline size_t ring_get_size(Ring *r) -{ +static inline size_t ring_get_size(Ring *r) { return r->used; } |