mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-16 06:23:46 +00:00
14 lines
147 B
Plaintext
14 lines
147 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
bool b;
|
|
expression y;
|
|
@@
|
|
- b = !!(y);
|
|
+ b = y;
|
|
@@
|
|
bool b;
|
|
expression y;
|
|
@@
|
|
- b = !!y;
|
|
+ b = y;
|