mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Remove unnecessary null to optional anyopaque coercion
Signed-off-by: Bernard Assan <mega.alpha100@gmail.com>
This commit is contained in:
parent
3c1ca128d2
commit
6f0bd2651d
1 changed files with 5 additions and 10 deletions
|
|
@ -1364,7 +1364,7 @@ pub fn register_personality(self: *IoUring) !void {
|
||||||
const res = linux.io_uring_register(
|
const res = linux.io_uring_register(
|
||||||
self.fd,
|
self.fd,
|
||||||
.register_personality,
|
.register_personality,
|
||||||
@as(?*anyopaque, null),
|
null,
|
||||||
0,
|
0,
|
||||||
);
|
);
|
||||||
try handle_registration_result(res);
|
try handle_registration_result(res);
|
||||||
|
|
@ -1372,12 +1372,7 @@ pub fn register_personality(self: *IoUring) !void {
|
||||||
|
|
||||||
pub fn unregister_personality(self: *IoUring, credential_id: u32) !void {
|
pub fn unregister_personality(self: *IoUring, credential_id: u32) !void {
|
||||||
assert(self.fd >= 0);
|
assert(self.fd >= 0);
|
||||||
const res = linux.io_uring_register(
|
const res = linux.io_uring_register(self.fd, .unregister_personality, null, credential_id);
|
||||||
self.fd,
|
|
||||||
.unregister_personality,
|
|
||||||
@as(?*anyopaque, null),
|
|
||||||
credential_id,
|
|
||||||
);
|
|
||||||
try handle_registration_result(res);
|
try handle_registration_result(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1397,8 +1392,8 @@ pub fn enable_rings(self: *IoUring) !void {
|
||||||
const res = linux.io_uring_register(
|
const res = linux.io_uring_register(
|
||||||
self.fd,
|
self.fd,
|
||||||
.register_enable_rings,
|
.register_enable_rings,
|
||||||
@as(?*anyopaque, null),
|
null,
|
||||||
@intCast(0),
|
0,
|
||||||
);
|
);
|
||||||
try handle_registration_result(res);
|
try handle_registration_result(res);
|
||||||
}
|
}
|
||||||
|
|
@ -1423,7 +1418,7 @@ pub fn unregister_iowq_aff(self: *IoUring) !void {
|
||||||
const res = linux.io_uring_register(
|
const res = linux.io_uring_register(
|
||||||
self.fd,
|
self.fd,
|
||||||
.unregister_iowq_aff,
|
.unregister_iowq_aff,
|
||||||
@as(?*anyopaque, null),
|
null,
|
||||||
0,
|
0,
|
||||||
);
|
);
|
||||||
try handle_registration_result(res);
|
try handle_registration_result(res);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue