Skip to content

Commit 5817f90

Browse files
authored
Fix compiler warning (#51)
1 parent b86c7f9 commit 5817f90

File tree

1 file changed

+1
-1
lines changed
  • components/livekit/core

1 file changed

+1
-1
lines changed

components/livekit/core/url.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ bool url_build(const url_build_options *options, char **out_url)
6868
const char* idf_version = esp_get_idf_version();
6969

7070
// TODO: Now that token is not included in the URL, use a fixed size buffer
71-
int final_len = asprintf(out_url, URL_FORMAT,
71+
asprintf(out_url, URL_FORMAT,
7272
options->server_url,
7373
separator,
7474
idf_version,

0 commit comments

Comments
 (0)