Skip to content

Commit

Permalink
adios2: Use unsigned instead of uint
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti committed Jan 23, 2023
1 parent d603fa1 commit 64d6f6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mingw-w64-adios2/001-no-unit-on-mingw.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
-void gUtilConvert(hsize_t *fromH5, size_t *to, uint ndims)
+void gUtilConvert(hsize_t *fromH5, size_t *to, unsigned int ndims)
{
uint i = 0;
unsigned i = 0;
for (i = 0; i < ndims; i++)
@@ -65,7 +65,7 @@
}
Expand Down
2 changes: 1 addition & 1 deletion mingw-w64-adios2/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ source=(https://github.com/ornladios/ADIOS2/archive/v${pkgver}/${_realname}-${pk
002-link-bpls-with-shlwapi.patch
003-no-regex_h-with-clang.patch)
sha256sums=('4906ab1899721c41dd918dddb039ba2848a1fb0cf84f3a563a1179b9d6ee0d9f'
'c497df0848747292fe246bbf98b97e4b3e1b7ad180bef1be2ab718102d6db902'
'117eadc55e9e1c4eba64bf5fbe98c7cb69471e50ff2c0a49bce9d5ee0bc59336'
'8e1f2076dd6f4e24a17261b366e6d8c7a7d93dbd29cd3cb19f343e5ced1c6588'
'379fe5edf3df2474edfe6515e0592af681c17f082fb4885b5cd554bdee11cd36')

Expand Down

0 comments on commit 64d6f6c

Please sign in to comment.