init: fix uninitiallized variable

we should never need it, but this is just to silence cppcheck

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
This commit is contained in:
Curtis Malainey 2021-08-26 16:22:38 -07:00 committed by Liam Girdwood
parent 33c13e8c17
commit 89afb8784d
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ static int primary_core_init(int argc, char *argv[], struct sof *sof)
#ifndef __ZEPHYR__
int main(int argc, char *argv[])
{
int err;
int err = 0;
trace_point(TRACE_BOOT_START);