Jinoh Kang (@iamahuman) commented about dlls/ntdll/unix/system.c:
case SystemCpuSetInformation: /* 175 */ return NtQuerySystemInformationEx(class, NULL, 0, info, size, ret_size);
- case SystemLeapSecondInformation: /* 206 */
- {
struct
{
BOOLEAN enabled;
ULONG flags;
} *leap = info;
len = sizeof(*leap);
if (size >= len)
{
FIXME( "SystemLeapSecondInformation - stub\n" );
leap->enabled = 1;
Since it's BOOLEAN:
```suggestion:-0+0 leap->enabled = TRUE; ```