mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-22 05:08:37 -05: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.