]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
libxfs: fix weird comment
authorDarrick J. Wong <darrick.wong@oracle.com>
Fri, 4 Dec 2020 17:17:12 +0000 (12:17 -0500)
committerEric Sandeen <sandeen@sandeen.net>
Fri, 4 Dec 2020 17:17:12 +0000 (12:17 -0500)
Not sure what happened with this multiline comment, but clean up all the
stars.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
include/platform_defs.h.in

index 95e7209a333217928c3b8d02e29661e60bee14ac..539bdbecf6e0b9fe051f9e2dd3ab68b8c0c735dd 100644 (file)
@@ -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;