[PATCH] minor sparse change fixing a typo

Dave Olien (dmo@osdl.org)
Mon, 23 Jun 2003 14:28:09 -0700


This patch fixes a one-character typo in evaluating SPECIAL_OR_ASSIGN.

--- sparse_original/evaluate.c 2003-06-16 08:25:48.000000000 -0700
+++ sparse_test/evaluate.c 2003-06-23 14:21:19.000000000 -0700
@@ -848,7 +848,7 @@
[SPECIAL_SHL_ASSIGN - SPECIAL_BASE] = SPECIAL_LEFTSHIFT,
[SPECIAL_SHR_ASSIGN - SPECIAL_BASE] = SPECIAL_RIGHTSHIFT,
[SPECIAL_AND_ASSIGN - SPECIAL_BASE] = '&',
- [SPECIAL_OR_ASSIGN - SPECIAL_BASE] = '&',
+ [SPECIAL_OR_ASSIGN - SPECIAL_BASE] = '|',
[SPECIAL_XOR_ASSIGN - SPECIAL_BASE] = '^'
};

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/