Skip to content

Commit d7a62d0

Browse files
tobluxtorvalds
authored andcommitted
compiler.h: Add missing quote in macro comment
Add a missing doublequote in the __is_constexpr() macro comment. Signed-off-by: Thorsten Blum <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 2bb69f5 commit d7a62d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ static inline void *offset_to_ptr(const int *off)
268268
* - When one operand is a null pointer constant (i.e. when x is an integer
269269
* constant expression) and the other is an object pointer (i.e. our
270270
* third operand), the conditional operator returns the type of the
271-
* object pointer operand (i.e. "int *). Here, within the sizeof(), we
271+
* object pointer operand (i.e. "int *"). Here, within the sizeof(), we
272272
* would then get:
273273
* sizeof(*((int *)(...)) == sizeof(int) == 4
274274
* - When one operand is a void pointer (i.e. when x is not an integer

0 commit comments

Comments
 (0)