From: Darrick J. Wong Date: Fri, 4 Dec 2020 17:17:12 +0000 (-0500) Subject: libxfs: fix weird comment X-Git-Tag: v5.10.0-rc1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05c716fba8bdfa6da5f3f02c2a9480694760fe91;p=thirdparty%2Fxfsprogs-dev.git libxfs: fix weird comment Not sure what happened with this multiline comment, but clean up all the stars. Signed-off-by: Darrick J. Wong Reviewed-by: Eric Sandeen Reviewed-by: Christoph Hellwig Signed-off-by: Eric Sandeen --- diff --git a/include/platform_defs.h.in b/include/platform_defs.h.in index 95e7209a3..539bdbecf 100644 --- a/include/platform_defs.h.in +++ b/include/platform_defs.h.in @@ -86,9 +86,9 @@ extern int platform_nproc(void); /* Simplified from version in include/linux/overflow.h */ /* - * * Compute a*b+c, returning SIZE_MAX on overflow. Internal helper for - * * struct_size() below. - * */ + * Compute a*b+c, returning SIZE_MAX on overflow. Internal helper for + * struct_size() below. + */ static inline size_t __ab_c_size(size_t a, size_t b, size_t c) { return (a * b) + c;