Skip to content

Commit

Permalink
Cosmetic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paullouisageneau committed Jun 13, 2024
1 parent dd7c0d3 commit 3c39ebd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/agent.c
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ int agent_set_remote_description(juice_agent_t *agent, const char *sdp) {
return 0;
}

JLOG_WARN("ICE restart is unsupported");
JLOG_WARN("ICE restart is not supported");
conn_unlock(agent);
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ice.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int ice_parse_sdp(const char *sdp, ice_description_t *description) {
if (*sdp == '\n') {
if (size) {
buffer[size++] = '\0';
if(parse_sdp_line(buffer, description) == ICE_PARSE_ERROR)
if (parse_sdp_line(buffer, description) == ICE_PARSE_ERROR)
return ICE_PARSE_ERROR;

size = 0;
Expand Down

0 comments on commit 3c39ebd

Please sign in to comment.