Skip to content

Commit

Permalink
Update to 0.10.0-dev.4213+91b05ad47
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix "xq" Queißner committed Oct 4, 2022
1 parent 03d4a9e commit 5ea268b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scanners.zig
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn searchFirstCapture(re: Regex, line: []const u8) Error!?usize {
searchFirstCaptureBufferAllocator.reset();
var result = re.captures(searchFirstCaptureBufferAllocator.allocator(), line, .{ .Anchored = true }) catch |err| switch (err) {
error.OutOfMemory => return error.OutOfMemory,
else => null,
else => return null,
};
if (result) |caps| {
var i: usize = 1;
Expand Down
2 changes: 1 addition & 1 deletion vendor/libpcre
Submodule libpcre updated 1 files
+1 −1 src/main.zig

0 comments on commit 5ea268b

Please sign in to comment.