Skip to content

Commit ddcf2f3

Browse files
committed
don't assign inside switch
1 parent 3935661 commit ddcf2f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/LibVLCSharp/Shared/Core/Core.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static internal bool LibVLCLoaded
8686
Architecture.X64 => ArchitectureNames.Win64,
8787
Architecture.X86 => ArchitectureNames.Win86,
8888
Architecture.Arm64 => ArchitectureNames.WinArm64,
89-
_ => arch = PlatformHelper.IsX64BitProcess ? ArchitectureNames.Win64 : ArchitectureNames.Win86
89+
_ => PlatformHelper.IsX64BitProcess ? ArchitectureNames.Win64 : ArchitectureNames.Win86
9090
};
9191
}
9292
#endif

0 commit comments

Comments
 (0)