mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
test: fix a variable initialization
Technically valid since it's a null pointer but let's not do this.
This commit is contained in:
parent
36c1917a16
commit
04d32ba794
1 changed files with 1 additions and 1 deletions
|
|
@ -295,7 +295,7 @@ PWTEST(logger_debug_env_topic_all)
|
|||
struct spa_log *default_logger = pw_log_get();
|
||||
char *oldenv = getenv("PIPEWIRE_DEBUG");
|
||||
char lvlstr[32];
|
||||
char *lvl = SPA_LOG_LEVEL_NONE;
|
||||
char *lvl = "X";
|
||||
|
||||
if (oldenv)
|
||||
oldenv = strdup(oldenv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue