Browse Source

MT#56493 fix compiler warning

The "done" label is also used when the output is already open and
established, therefore the log message should go above it.

Change-Id: Iceb218a8cffeb42de302324374c790c46557d985
pull/1611/head
Richard Fuchs 3 years ago
parent
commit
b8b6e895ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      recording-daemon/output.c

+ 1
- 1
recording-daemon/output.c View File

@ -281,8 +281,8 @@ got_fn:
goto err;
db_config_stream(output);
done:
ilog(LOG_INFO, "Opened output media file '%s' for writing", full_fn);
done:
if (actual_format)
*actual_format = output->actual_format;
return 0;


Loading…
Cancel
Save