Skip to content

Commit

Permalink
Merge pull request #27 from dogukancagatay/refactor-deprecated-jna-li…
Browse files Browse the repository at this point in the history
…brary-call

lib: refactor deprecated jna library call
  • Loading branch information
dogukancagatay authored Nov 1, 2024
2 parents 2ed5ab4 + d69cfd6 commit 5339e2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public interface SystemdJournalLibrary extends Library {

SystemdJournalLibrary INSTANCE = Native
.loadLibrary(System.getProperty("systemd.library", "systemd"), SystemdJournalLibrary.class);
.load(System.getProperty("systemd.library", "systemd"), SystemdJournalLibrary.class);

int sd_journal_print(int priority, String format, Object... args);

Expand Down

0 comments on commit 5339e2d

Please sign in to comment.