Skip to content

Commit

Permalink
Merge pull request #1 from mkitti/mkitti/jna_update_5_11_0
Browse files Browse the repository at this point in the history
Update JNA to 5.11.0
  • Loading branch information
ctrueden authored Jun 14, 2022
2 parents ceed49e + 9049a08 commit e545cb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>26.0.0</version>
<version>31.1.0</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -79,7 +79,7 @@
<license.licenseName>gpl_v3</license.licenseName>
<license.copyrightOwners>Fiji developers.</license.copyrightOwners>
<license.projectName>Fiji distribution of ImageJ for the life sciences.</license.projectName>

<jna.version>5.11.0</jna.version>
<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/CPU_Meter.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class CPU_Meter implements PlugIn {
public interface CLibrary extends Library {
CLibrary INSTANCE = (CLibrary)
Native.loadLibrary(Platform.isWindows() ? "msvcrt" : "c", CLibrary.class);
Native.load(Platform.isWindows() ? "msvcrt" : "c", CLibrary.class);

int getloadavg(double[] loadavg, int nelem);
}
Expand Down

0 comments on commit e545cb4

Please sign in to comment.