parse_commandline: fix incorrect win32 check

This commit is contained in:
Kacper Michajłow 2024-06-04 19:05:17 +02:00
parent 7258ca3247
commit 0fd3fe857c
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ static bool split_opt(struct parse_state *p)
return true;
}
#ifdef __MINGW32__
#ifdef _WIN32
static void process_non_option(struct playlist *files, const char *arg)
{
glob_t gg;