Skip to content

Commit dd7f3f6

Browse files
committed
chore: fix typo: int -> void
1 parent a21734f commit dd7f3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/sched/linux/sched_setcpuset.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace LIBC_NAMESPACE_DECL {
1818

19-
LLVM_LIBC_FUNCTION(int, __sched_setcpuset,
19+
LLVM_LIBC_FUNCTION(void, __sched_setcpuset,
2020
(int cpu, const size_t cpuset_size, cpu_set_t *set)) {
2121
if (cpu / 8 < cpuset_size) {
2222
const size_t element_index = cpu / NCPUBITS;

0 commit comments

Comments
 (0)