Skip to content

Commit

Permalink
Fix indentation for else
Browse files Browse the repository at this point in the history
  • Loading branch information
david-winder-kaltura committed Dec 28, 2023
1 parent 9136f3a commit 205fd6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ngx_http_vod_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,9 @@ ngx_http_vod_set_clip_id_var(ngx_http_request_t *r, ngx_http_variable_value_t *v
if (clip_source->id.len != 0)
{
value = &clip_source->id;
} else {
}
else
{
value = &clip_source->mapped_uri;
}
break;
Expand Down

0 comments on commit 205fd6f

Please sign in to comment.