Skip to content

Commit

Permalink
compilation error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gubatron committed Jan 2, 2016
1 parent 2e78580 commit ba4e59e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public class libtorrent_jni {
System.load(path);
}
} catch (LinkageError e) {
throw new LinkageError("Look for your architecture binary instructions at: https://github.com/frostwire/frostwire-jlibtorrent", e);
LinkageError le = new LinkageError("Look for your architecture binary instructions at: https://github.com/frostwire/frostwire-jlibtorrent");
le.initCause(e);
throw le;
}
}

Expand Down

0 comments on commit ba4e59e

Please sign in to comment.