Commit f1b1c2d7 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

White space copy&paste fixups

parent e03e1e8c
......@@ -573,11 +573,11 @@ VSC_F(bans_lurker_contention, uint64_t, 0, 'c', diag,
)
VSC_F(bans_persisted_bytes, uint64_t, 0, 'g', diag,
"Bytes used by the persisted ban lists",
"Number of bytes used by the persisted ban lists."
"Number of bytes used by the persisted ban lists."
)
VSC_F(bans_persisted_fragmentation, uint64_t, 0, 'g', diag,
"Extra bytes in persisted ban lists due to fragmentation",
"Number of extra bytes accumulated through dropped and"
"Number of extra bytes accumulated through dropped and"
" completed bans in the persistent ban lists."
)
......
......@@ -268,8 +268,8 @@ void VSL_ResetError(struct VSL_data *vsl);
struct VSL_cursor *VSL_CursorVSM(struct VSL_data *vsl, struct VSM_data *vsm,
unsigned options);
/*
* Set the cursor pointed to by cursor up as a raw cursor in the
* log. Cursor points at the current log head.
* Set the cursor pointed to by cursor up as a raw cursor in the
* log. Cursor points at the current log head.
*
* Options:
* VSL_COPT_TAIL Start cursor at log tail
......@@ -279,7 +279,7 @@ struct VSL_cursor *VSL_CursorVSM(struct VSL_data *vsl, struct VSM_data *vsm,
* Return values:
* non-NULL: Pointer to cursor
* NULL: Error, see VSL_Error
*/
*/
struct VSL_cursor *VSL_CursorFile(struct VSL_data *vsl, const char *name,
unsigned options);
......
......@@ -240,7 +240,7 @@ struct { \
#define VSTAILQ_LAST(head, type, field) \
(VSTAILQ_EMPTY((head)) ? \
NULL : \
((struct type *)(void *) \
((struct type *)(void *) \
((char *)((head)->vstqh_last) - \
__offsetof(struct type, field))))
......
......@@ -150,7 +150,7 @@ static __inline struct type * \
name##_VSPLAY_MIN_MAX(struct name *head, int val) \
{ \
name##_VSPLAY_MINMAX(head, val); \
return (VSPLAY_ROOT(head)); \
return (VSPLAY_ROOT(head)); \
}
/* Main splay operation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment