Skip to content

Commit

Permalink
fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Szatmary committed Sep 8, 2016
1 parent 08f3d60 commit df1369a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/caption.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ int caption_frame_decode_midrowchange (caption_frame_t* frame, uint16_t cc_data)
return 0;
}

int caption_frame_backspace (caption_frame_t* frame)
void caption_frame_backspace (caption_frame_t* frame)
{
// do not reverse wrap (tw 28:20)
frame->state.col = (0 < frame->state.col) ? (frame->state.col - 1) : 0;
Expand Down

0 comments on commit df1369a

Please sign in to comment.