Skip to content

Commit

Permalink
Fix warning for fopen() in RecorderCallbacks.c
Browse files Browse the repository at this point in the history
  • Loading branch information
cgutman committed Oct 7, 2023
1 parent 7580f3f commit d457fbb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/RecorderCallbacks.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#ifdef _WIN32
// Don't warn for fopen() usage
#define _CRT_SECURE_NO_WARNINGS 1
#endif

#include "Limelight-internal.h"

static FILE* videoFile;
Expand Down

0 comments on commit d457fbb

Please sign in to comment.