From 30d0880c9c64228ae818d09bf8ec963e75c06dda Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 4 Jan 2024 09:32:41 -0500 Subject: [PATCH] MT#59069 use proper bool type Change-Id: I3f5087868fd7b768985b5f81894d7ac2a46286b2 --- recording-daemon/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recording-daemon/output.c b/recording-daemon/output.c index 11a3e6049..ed387e262 100644 --- a/recording-daemon/output.c +++ b/recording-daemon/output.c @@ -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);