Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iowow: add version 1.4.18 #23630

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading