diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/cue_splitter.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/cue_splitter.c b/tests/cue_splitter.c index 9b6561d..b5a8627 100644 --- a/tests/cue_splitter.c +++ b/tests/cue_splitter.c @@ -185,7 +185,7 @@ s32 main(s32 argc, char *argv[]) al_str_clone(&output_path, &output_dir); al_str_cat(&output_path, &al_str_c("/")); al_str_cat(&output_path, &info->filename); - // start and length from libcue ignore all gaps. + // start and length from libcue ignores all gaps. info->start = track_get_start(track); info->length = track_get_length(track); al_printf("start: %zd, length: %zd, %.*s\n", info->start, info->length, al_str_x(&output_path)); @@ -195,8 +195,5 @@ s32 main(s32 argc, char *argv[]) return EXIT_SUCCESS; } #else -s32 main(void) -{ - return EXIT_FAILURE; -} +s32 main(void) { return EXIT_FAILURE; } #endif |