1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 08:37:59 +00:00

player/configfiles: fix utime.h include for Windows SDK

This commit is contained in:
Kacper Michajłow 2024-05-02 00:44:59 +02:00
parent 7f6bfab0d3
commit 3ffb5c90ee

View File

@ -21,7 +21,12 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef _WIN32
#include <sys/utime.h>
#else
#include <utime.h>
#endif
#include <libavutil/md5.h>