8000 Fix compile error on OSX that came from an upstream merge. · pythonnet/pythonnet@c0b52fa · GitHub
[go: up one dir, main page]

Skip to content

Commit c0b52fa

Browse files
author
Benoit Hudson
committed
Fix compile error on OSX that came from an upstream merge.
1 parent 13f8b53 commit c0b52fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/runtime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static IntPtr LoadLibrary(string fileName)
2222
}
2323
#elif MONO_OSX
2424
private static int RTLD_GLOBAL = 0x8;
25-
private const string NativeDll = "/usr/lib/libSystem.dylib"
25+
private const string NativeDll = "/usr/lib/libSystem.dylib";
2626
private static IntPtr RTLD_DEFAULT = new IntPtr(-2);
2727

2828
public static IntPtr LoadLibrary(string fileName)

0 commit comments

Comments
 (0)
0