sys: util: fix parameter documentation

Second one should have been "b".

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
Fabio Baltieri 2023-09-15 11:50:51 +00:00 committed by Fabio Baltieri
parent 6c3e5be8f7
commit 71dbeeb084

View file

@ -206,7 +206,7 @@ extern "C" {
* @brief Validate if two entities have a compatible type
*
* @param a the first entity to be compared
* @param a the second entity to be compared
* @param b the second entity to be compared
* @return 1 if the two elements are compatible, 0 if they are not
*/
#define SAME_TYPE(a, b) __builtin_types_compatible_p(__typeof__(a), __typeof__(b))