1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-18 05:07:18 +00:00

cache: fix compilation without posix timers

This is a regression caused by 854303a. This commit removed the include of
`sys/time.h` which was included in `cache.c` through a chain of recurvive
includes.
This commit is contained in:
Stefano Pigozzi 2013-07-08 19:26:45 +02:00
parent 15a5422dd2
commit 846f46ec1d

View File

@ -43,6 +43,7 @@
#include <assert.h>
#include <pthread.h>
#include <time.h>
#include <sys/time.h>
#include <libavutil/common.h>