Skip to content

Commit

Permalink
Fix special characters at end of line
Browse files Browse the repository at this point in the history
  • Loading branch information
natikaltura committed Nov 13, 2024
1 parent d7bfa26 commit 198ead3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/janus_videoroom.c
Original file line number Diff line number Diff line change
Expand Up @@ -11093,7 +11093,7 @@ static void *janus_videoroom_handler(void *data) {
json_integer_value(sc_substream) < 0 || json_integer_value(sc_substream) > 2) {
JANUS_LOG(LOG_ERR, "Invalid element (substream/spatial_layer should be 0, 1 or 2)\n");
error_code = JANUS_VIDEOROOM_ERROR_INVALID_ELEMENT;
g_snprintf(error_cause, 512, "Invalid value (substream/spatial_layer should be 0, 1 or 2)");
g_snprintf(error_cause, 512, "Invalid value (substream/spatial_layer should be 0, 1 or 2)");
janus_mutex_unlock(&videoroom->mutex);
/* Unref publishers we may have taken note of so far */
while(publishers) {
Expand Down

0 comments on commit 198ead3

Please sign in to comment.