aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-30 08:29:33 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-10-30 08:29:33 +0100
commit527f167f2e113ec560fa7a4053ed27a940b96714 (patch)
treeab377bd0855ce7096064fd99cc463542bb3a8875
parent10f5fafb6d2880792d7cdc7f99fda8a0e36b36c1 (diff)
Update mlib
-rw-r--r--src/main.c5
m---------vendor/mlib0
2 files changed, 2 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 3f96758..6086a9c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -260,15 +260,14 @@ pattern_comp(u8view_t pat)
/* Find the right delimeter, which is optional for the last
operator */
- /* TODO: Change u8view_t.len to ptrdiff_t and use -1 here */
- u8view_t re = {pat.p, (size_t)-1};
+ u8view_t re = {pat.p, -1};
while ((w = ucsnext(&ch, &pat)) != 0) {
if (ch == rdelim) {
re.len = pat.p - re.p - w;
break;
}
}
- if (re.len == (size_t)-1)
+ if (re.len == -1)
re.len = pat.p - re.p;
if (re.len == 0) {
if (op.c != 'h') {
diff --git a/vendor/mlib b/vendor/mlib
-Subproject 5dbf53a1c512f9163744874e3d502e9f9e2808d
+Subproject 045f4bb5b1767140c4f6cfe2d2002553925c420