From 8d01c97d2e2bac3e6652e442812d43acac83e62b Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Thu, 30 Jun 2022 13:03:11 +0530 Subject: [PATCH] abstraction-map.h: increase the column width to 100 100 column width is more comfortable to read over 80 columns, lets increase it. This patch, also introduced/removes empty lines across the file, making it more readable. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- src/abstraction-map.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/abstraction-map.h b/src/abstraction-map.h index 2a2ac476..fd2409a2 100644 --- a/src/abstraction-map.h +++ b/src/abstraction-map.h @@ -14,13 +14,12 @@ extern "C" { #endif struct cgroup_abstraction_map { - /* if the conversion isn't a one-to-one mapping or the mathematical + /* + * if the conversion isn't a one-to-one mapping or the mathematical * conversion is unique, create a custom conversion function. */ - int (*cgroup_convert)(struct cgroup_controller * const dst_cgc, - const char * const in_value, - const char * const out_setting, - void *in_dflt, void *out_dflt); + int (*cgroup_convert)(struct cgroup_controller * const dst_cgc, const char * const in_value, + const char * const out_setting, void *in_dflt, void *out_dflt); char *in_setting; void *in_dflt; char *out_setting; -- 2.47.2