Skip to content

Commit

Permalink
libvmaf: fix case of windows.h
Browse files Browse the repository at this point in the history
mingw provides a windows.h header, not Windows.h.  This causes a build
failure when cross compiling from a Unix system with a case sensitive
filesystem.
  • Loading branch information
alyssais authored and nilfm99 committed Oct 10, 2024
1 parent d95b69e commit 146455e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvmaf/test/test_framesync.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <stdint.h>
#include <string.h>
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
#else
#include <unistd.h>
#endif
Expand Down

0 comments on commit 146455e

Please sign in to comment.