Skip to content

Commit

Permalink
(#23630) iowow: add version 1.4.18
Browse files Browse the repository at this point in the history
  • Loading branch information
toge authored Apr 20, 2024
1 parent f87f10b commit 26bc315
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
7 changes: 7 additions & 0 deletions recipes/iowow/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
sources:
"1.4.18":
url: "https://github.com/Softmotions/iowow/archive/refs/tags/v1.4.18.tar.gz"
sha256: "ef4ee56dd77ce326fff25b6f41e7d78303322cca3f11cf5683ce9abfda34faf9"
"1.4.17":
url: "https://github.com/Softmotions/iowow/archive/refs/tags/v1.4.17.tar.gz"
sha256: "13a851026dbc1f31583fba96986e86e94a7554f9e7d38aa12a9ea5dbebdf328b"
"1.4.16":
url: "https://github.com/Softmotions/iowow/archive/refs/tags/v1.4.16.tar.gz"
sha256: "6e3b92b6c342ef6ef4a2731ca2d43368749d66ca876b24b773587364cff01003"
patches:
"1.4.18":
- patch_file: "patches/1.4.18-0002-fix-uint64_t-format.patch"
patch_description: "fix uint64_t printf format"
patch_type: "portability"
"1.4.17":
- patch_file: "patches/1.4.16-0002-fix-uint64_t-format.patch"
patch_description: "fix uint64_t printf format"
Expand Down
13 changes: 13 additions & 0 deletions recipes/iowow/all/patches/1.4.18-0002-fix-uint64_t-format.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/fs/iwfsmfile.c b/src/fs/iwfsmfile.c
index 2d1452a..121e989 100644
--- a/src/fs/iwfsmfile.c
+++ b/src/fs/iwfsmfile.c
@@ -1339,7 +1339,7 @@ static iwrc _fsm_read_meta_lr(struct fsm *fsm) {
fsm->bmlen = llv;
if (llv & (64 - 1)) {
rc = IWFS_ERROR_INVALID_FILEMETA;
- iwlog_ecode_error(rc, "Free-space bitmap length is not 64bit aligned: %" PRIuMAX "", fsm->bmlen);
+ iwlog_ecode_error(rc, "Free-space bitmap length is not 64bit aligned: %" PRIx64 "", fsm->bmlen);
}
rp += sizeof(llv);

2 changes: 2 additions & 0 deletions recipes/iowow/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"1.4.18":
folder: all
"1.4.17":
folder: all
"1.4.16":
Expand Down

0 comments on commit 26bc315

Please sign in to comment.