drop major/minor version numbers, use just version string

This commit is contained in:
Josh Coalson
2001-01-24 19:01:07 +00:00
parent 8f7dfd5b5f
commit e6898a37f8
4 changed files with 3 additions and 8 deletions

View File

@@ -106,7 +106,7 @@ static bool audio_error_ = false;
InputPlugin *get_iplugin_info()
{
flac_ip.description = g_strdup_printf("FLAC Player v%u.%u", FLAC__MAJOR_VERSION, FLAC__MINOR_VERSION);
flac_ip.description = g_strdup_printf("FLAC Player v%s", FLAC__VERSION_STRING);
return &flac_ip;
}