From b79fde0d7dfe7d607b5950373c2c78e7f04379ce Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 13 Feb 2024 12:03:27 +0300 Subject: [PATCH] points_to_container: white space change Add a space character. Signed-off-by: Dan Carpenter --- smatch_points_to_container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smatch_points_to_container.c b/smatch_points_to_container.c index 08b2e40c..141e5ca4 100644 --- a/smatch_points_to_container.c +++ b/smatch_points_to_container.c @@ -38,7 +38,7 @@ static char *handle_container_of_assign(struct expression *expr, struct expressi return NULL; if (!get_value(right->right, &sval) || - sval.value < 0 || sval.value > MTAG_OFFSET_MASK) + sval.value < 0 || sval.value > MTAG_OFFSET_MASK) return NULL; orig = get_assigned_expr(right->left); -- 2.11.4.GIT