aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@toblux.com>2024-04-09 17:46:23 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2024-04-09 09:06:50 -0700
commitd7a62d0a9a17e97ce2d4d40431094e09956a0568 (patch)
treea512d1f4c92d5e37026545d972fe49237bc73f96
parent2bb69f5fc72183e1c62547d900f560d0e9334925 (diff)
downloadlinux-d7a62d0a9a17e97ce2d4d40431094e09956a0568.tar.gz
compiler.h: Add missing quote in macro comment
Add a missing doublequote in the __is_constexpr() macro comment. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/compiler.h b/include/linux/compiler.h
index c00cc6c0878a1e..8c252e073bd810 100644
--- a/include/linux/compiler.h
+++ b/include/linux/compiler.h
@@ -268,7 +268,7 @@ static inline void *offset_to_ptr(const int *off)
* - When one operand is a null pointer constant (i.e. when x is an integer
* constant expression) and the other is an object pointer (i.e. our
* third operand), the conditional operator returns the type of the
- * object pointer operand (i.e. "int *). Here, within the sizeof(), we
+ * object pointer operand (i.e. "int *"). Here, within the sizeof(), we
* would then get:
* sizeof(*((int *)(...)) == sizeof(int) == 4
* - When one operand is a void pointer (i.e. when x is not an integer