Skip to content

Commit

Permalink
Fix typo in systrace logging in the soloader
Browse files Browse the repository at this point in the history
Summary: Made the naming consistent

Reviewed By: dcolascione

Differential Revision: D3138491

fbshipit-source-id: 79b6c2712bba948b6ade25ab2073dca630b318aa
  • Loading branch information
Tobias Ritzau authored and Pascal Hartig committed Jan 9, 2018
1 parent cb087ef commit 4682e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/facebook/soloader/DirectorySoSource.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected int loadLibraryFrom(String soName, int loadFlags, File libDir) throws

private static String[] getDependencies(File soFile) throws IOException {
if (SoLoader.SYSTRACE_LIBRARY_LOADING) {
Trace.beginSection("SoLoader::GetElfDependencies[" + soFile.getName() + "]");
Trace.beginSection("SoLoader.getElfDependencies[" + soFile.getName() + "]");
}
try {
return MinElf.extract_DT_NEEDED(soFile);
Expand Down

0 comments on commit 4682e9c

Please sign in to comment.