Browse Source

MT#59069 use proper bool type

Change-Id: I3f5087868fd7b768985b5f81894d7ac2a46286b2
pull/1786/head
Richard Fuchs 2 years ago
parent
commit
1a23c15634
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      recording-daemon/output.c

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

@ -106,7 +106,7 @@ static output_t *output_new(const char *path, const metafile_t *mf, const char *
// construct output file name
struct timeval now;
struct tm tm;
g_autoptr(char) escaped_callid = g_uri_escape_string(mf->call_id, NULL, 0);
g_autoptr(char) escaped_callid = g_uri_escape_string(mf->call_id, NULL, false);
const char *ax = escaped_callid;
gettimeofday(&now, NULL);


Loading…
Cancel
Save