Message ID | 20210824064804.60279-1-deng.changcheng@zte.com.cn |
---|---|
State | New |
Headers | show |
Series | [linux-next] tools:libbpf: remove unneeded conversions to bool | expand |
diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c index 88d8825..e7efead 100644 --- a/tools/lib/bpf/libbpf.c +++ b/tools/lib/bpf/libbpf.c @@ -1531,7 +1531,7 @@ static int set_kcfg_value_tri(struct extern_desc *ext, void *ext_val, ext->name, value); return -EINVAL; } - *(bool *)ext_val = value == 'y' ? true : false; + *(bool *)ext_val = (value == 'y'); break; case KCFG_TRISTATE: if (value == 'y')