1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 15:38:04 +02:00

Rename GetLeadOut

This commit is contained in:
Erik Andrén Zachrisson 2015-11-02 21:51:45 +01:00
parent 951382b9e0
commit 8a55be728e

View file

@ -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;