summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinston Liu <[email protected]>2026-08-07 11:17:58 -0700
committerGitHub <[email protected]>2026-08-07 11:17:58 -0700
commit32cf3d9cee9b8ed64e9c7336634d011b66b46c4e (patch)
tree1533e2e612dd96a70b445173f36edf1075fce80f
parentef7c3074748ab05726c3a9161d3256118efd76e2 (diff)
Fix C4430 warning in avshws.h
-rw-r--r--avstream/avshws/avshws.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/avstream/avshws/avshws.h b/avstream/avshws/avshws.h
index 3b8cc913..05efb2a5 100644
--- a/avstream/avshws/avshws.h
+++ b/avstream/avshws/avshws.h
@@ -56,7 +56,7 @@ extern "C" {
#define DEBUGLVL_TERSE 1
#define DEBUGLVL_ERROR 0
-const DebugLevel = DEBUGLVL_TERSE;
+const int DebugLevel = DEBUGLVL_TERSE;
#if (DBG)
#define _DbgPrintF(lvl, strings) \
@@ -365,4 +365,4 @@ void __cdecl operator delete[]
#include "filter.h"
#include "capture.h"
#include <uuids.h>
-#endif //_avshws_h_ \ No newline at end of file
+#endif //_avshws_h_