Skip to content

Commit

Permalink
compiler.h: Add missing quote in macro comment
Browse files Browse the repository at this point in the history
Add a missing doublequote in the __is_constexpr() macro comment.

Signed-off-by: Thorsten Blum <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
toblux authored and torvalds committed Apr 9, 2024
1 parent 2bb69f5 commit d7a62d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7a62d0

Please sign in to comment.