Skip to content

Commit 098bad2

Browse files
committed
fix: Use lowercase l in DllName to not fight windows/linux filenames
1 parent dde367b commit 098bad2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Lua51.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public struct lua_State : IEquatable<lua_State>
2727
public static class Lua
2828
{
2929

30-
private const string DllName = "Lua515";
30+
private const string DllName = "lua515";
3131
private const CallingConvention Convention = CallingConvention.Cdecl;
3232

3333
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

src/Lua52.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public struct lua_State : IEquatable<lua_State>
2828
public static class Lua
2929
{
3030

31-
private const string DllName = "Lua524";
31+
private const string DllName = "lua524";
3232
private const CallingConvention Convention = CallingConvention.Cdecl;
3333

3434
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

src/Lua53.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public struct lua_KContext
3333
public static class Lua
3434
{
3535

36-
private const string DllName = "Lua536";
36+
private const string DllName = "lua536";
3737
private const CallingConvention Convention = CallingConvention.Cdecl;
3838

3939
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

src/Lua54.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public struct lua_KContext
3333
public static class Lua
3434
{
3535

36-
private const string DllName = "Lua546";
36+
private const string DllName = "lua546";
3737
private const CallingConvention Convention = CallingConvention.Cdecl;
3838

3939
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

0 commit comments

Comments
 (0)