Skip to content
Snippets Groups Projects
Commit 53c7d501 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Fixed typo in debug output.

parent d5898def
Branches
Tags
No related merge requests found
......@@ -718,7 +718,7 @@ int journal_read(journal_t *journal, uint64_t id, journal_cmp_t cf, char *dst)
/* Check valid flag. */
if (!(n->flags & JOURNAL_VALID)) {
dbg_journal("journal: node with id=%llu is invalid "
"(flags=0x%hx)\n", (unsigned long long)id, n->flags);
"(flags=0x%hx)\n", (unsigned long long)n->id, n->flags);
return KNOT_EINVAL;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment