Do not use bool in C library

This commit is contained in:
Vitaliy Filippov
2023-07-18 23:37:53 +03:00
parent b963f2fd93
commit 4a4627dcab
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ void vitastor_c_uring_wait_events(vitastor_c *client)
client->ringloop->wait();
}
bool vitastor_c_uring_has_work(vitastor_c *client)
int vitastor_c_uring_has_work(vitastor_c *client)
{
return client->ringloop->has_work();
}