From 8a55be728e05c2e1f03f3a0c963b0d76389d424f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Mon, 2 Nov 2015 21:51:45 +0100 Subject: [PATCH] Rename GetLeadOut --- cue2pops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cue2pops.c b/cue2pops.c index 3410b50..f2d8f7a 100644 --- a/cue2pops.c +++ b/cue2pops.c @@ -291,7 +291,7 @@ int convert_file_ending_to_vcd(const char *file_name) return -2; } -int GetLeadOut(unsigned char *hbuf, int b_size) +int get_lead_out(unsigned char *hbuf, int b_size) { /* MSF is calculated from the .bin size so DO NOT APPLY gap++/gap-- ADJUSTMENTS IN THIS FUNCTION ! */ @@ -988,7 +988,7 @@ int main(int argc, char **argv) return 0; } - if(GetLeadOut(headerbuf, bin_size) != 0) { + if(get_lead_out(headerbuf, bin_size) != 0) { free(bin_path); free(headerbuf); return 0;