Rémi Bernon (@rbernon) commented about programs/wineboot/wineboot.c:
- }
- while (error > 500 && --retries);
- if (!retries) WARN( "TSC frequency calibration failed, unstable TSC?\n" );
- else
- {
freq = (freq0 + freq1) / 2;
TRACE( "TSC frequency calibration complete, found %I64u Hz\n", freq );
- }
- return freq;
+}
+static BOOL is_tsc_trusted_by_the_kernel(void) +{
- char buf[4] = {};
```suggestion:-0+0 char buf[4] = {0}; ```