Skip to content
Snippets Groups Projects
Commit 6582bb99 authored by stepan's avatar stepan
Browse files

TruffleNFI_DLL: put the filename in quotes

parent 2f2b1413
No related branches found
No related tags found
No related merge requests found
...@@ -68,9 +68,9 @@ public class TruffleNFI_DLL implements DLLRFFI { ...@@ -68,9 +68,9 @@ public class TruffleNFI_DLL implements DLLRFFI {
sb.append(local ? "RTLD_LOCAL" : "RTLD_GLOBAL"); sb.append(local ? "RTLD_LOCAL" : "RTLD_GLOBAL");
sb.append('|'); sb.append('|');
sb.append(now ? "RTLD_NOW" : "RTLD_LAZY"); sb.append(now ? "RTLD_NOW" : "RTLD_LAZY");
sb.append(")"); sb.append(") \"");
sb.append(' ');
sb.append(path); sb.append(path);
sb.append('"');
return sb.toString(); return sb.toString();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment