mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-10 02:26:15 -04:00
The timeout_usec variable is uint64_t, but the log format was set to %ld (signed long int), so it would sometimes log a nonsensical value. Let's use $PRIu64 instead, which should be equivalent to %llu (unsigned long long int). Fixes #5797.