connector: Fix invalid conversion in cn_proc.h
authorMatt Jan <zoo868e@gmail.com>
Tue, 14 May 2024 04:10:46 +0000 (12:10 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 24 May 2024 09:36:55 +0000 (10:36 +0100)
The implicit conversion from unsigned int to enum
proc_cn_event is invalid, so explicitly cast it
for compilation in a C++ compiler.
/usr/include/linux/cn_proc.h: In function 'proc_cn_event valid_event(proc_cn_event)':
/usr/include/linux/cn_proc.h:72:17: error: invalid conversion from 'unsigned int' to 'proc_cn_event' [-fpermissive]
   72 |         ev_type &= PROC_EVENT_ALL;
      |                 ^
      |                 |
      |                 unsigned int

Signed-off-by: Matt Jan <zoo868e@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/cn_proc.h

index f2afb7cc4926cdc048541a2ca2e18b8e474ea69d..18e3745b86cd481f97fe7330a297373a25c29209 100644 (file)
@@ -69,8 +69,7 @@ struct proc_input {
 
 static inline enum proc_cn_event valid_event(enum proc_cn_event ev_type)
 {
-       ev_type &= PROC_EVENT_ALL;
-       return ev_type;
+       return (enum proc_cn_event)(ev_type & PROC_EVENT_ALL);
 }
 
 /*