Skip to content

Commit

Permalink
Merge pull request #5 from chriptus13/patch-1
Browse files Browse the repository at this point in the history
Typo on ExceptionInInitializerError message
  • Loading branch information
asonje authored Jul 16, 2021
2 parents f72ff05 + d570db2 commit a5cb58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/intel/pmem/llpl/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void loadLibrary() {
loaded = true;
}
catch (IOException e) {
throw new ExceptionInInitializerError("Failed to native load llpl library");
throw new ExceptionInInitializerError("Failed to load native llpl library");
}
finally {
if (nativeLib != null) nativeLib.deleteOnExit();
Expand Down

0 comments on commit a5cb58b

Please sign in to comment.