Skip to content
Snippets Groups Projects
Commit 94bf7b48 authored by Serge Petrenko's avatar Serge Petrenko Committed by Vladislav Shpilevoy
Browse files

journal: fix typo in journal_no_write_async()

parent b691db87
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ journal_no_write_async(struct journal *journal,
struct journal_entry *entry)
{
(void)journal;
assert(true);
assert(false);
errno = EINVAL;
diag_set(SystemError, "write_async wrong context");
......@@ -49,7 +49,7 @@ journal_no_write_async(struct journal *journal,
void
journal_no_write_async_cb(struct journal_entry *entry)
{
assert(true);
assert(false);
errno = EINVAL;
diag_set(SystemError, "write_async_cb wrong context");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment