summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-15 14:40:13 +0100
committerwm4 <wm4@nowhere>2014-12-15 14:44:47 +0100
commita40df83bae2a8e018ac9e27827012347f3105725 (patch)
treee9eff7212f7737f0e7b0dadbf89c16a9963ed7a4
parent4966a67f71d8a1d7beece7da46198a5c804e8c68 (diff)
downloadmpv-a40df83bae2a8e018ac9e27827012347f3105725.tar.bz2
mpv-a40df83bae2a8e018ac9e27827012347f3105725.tar.xz
lua: cosmetics: fix some include directives
Apparently, the atomics were used by the win32 subprocess code. This code was moved to a separate file, but the atomics.h include was forgotten.
-rw-r--r--player/lua.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/player/lua.c b/player/lua.c
index 992c237867..1110137c68 100644
--- a/player/lua.c
+++ b/player/lua.c
@@ -24,13 +24,12 @@
#include <dirent.h>
#include <math.h>
-#include "osdep/io.h"
-#include "osdep/atomics.h"
-
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
+#include "osdep/io.h"
+
#include "talloc.h"
#include "common/common.h"