mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-07 11:58:08 +02:00
[main] Flip debug buffer conditional check
It was inverted so we were never creating a debug buffer when plymouth:debug was put on the kernel command line.
This commit is contained in:
parent
21a9ba67a7
commit
e031f59b98
1 changed files with 1 additions and 1 deletions
|
|
@ -1127,7 +1127,7 @@ check_verbosity (state_t *state)
|
|||
debug_buffer_path = path;
|
||||
}
|
||||
|
||||
if (debug_buffer != NULL)
|
||||
if (debug_buffer == NULL)
|
||||
debug_buffer = ply_buffer_new ();
|
||||
|
||||
#ifdef LOG_TO_DEBUG_FILE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue