Skip to content

Commit

Permalink
sof-logger: fix "unary operator expected"
Browse files Browse the repository at this point in the history
Fix for:
```
/home/ubuntu/sof-test/test-case/../case-lib/lib.sh: line 955:
[: -eq: unary operator expected
```

Signed-off-by: Artur Wilczak <[email protected]>
  • Loading branch information
arikgreen committed Feb 18, 2025
1 parent 77dd64c commit 2cd5085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion case-lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ is_ipc4()
logger_disabled()
{
# Disable logging when available...
if [ ${OPT_VAL['s']} -eq 0 ]; then
if [[ ${OPT_VAL['s']} -eq 0 ]]; then
return 0
fi

Expand Down

0 comments on commit 2cd5085

Please sign in to comment.