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

Fixed typo in debug output.

parent c3c62c15
No related branches found
No related tags found
No related merge requests found
......@@ -726,7 +726,7 @@ int journal_read_node(journal_t *journal, journal_node_t *n, 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% 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