change default extension for ogg flac from .ogg to .oga (SF#1762492: http://sourceforge.net/tracker/index.php?func=detail&aid=1762492&group_id=13478&atid=113478)

This commit is contained in:
Josh Coalson
2007-08-01 03:02:00 +00:00
parent 05f710f4e0
commit 12d3a41896
16 changed files with 39 additions and 30 deletions

View File

@@ -80,7 +80,7 @@ static unsigned mc_our_block_number_ = 0;
static const char *flacfilename(bool is_ogg)
{
return is_ogg? "metadata.ogg" : "metadata.flac";
return is_ogg? "metadata.oga" : "metadata.flac";
}
static bool die_(const char *msg)