Merge pull request #558 from bmunger/master

Fix Linux compile errors
This commit is contained in:
Miodrag Milanović 2016-01-08 21:33:48 +01:00
commit e933c869db
2 changed files with 0 additions and 16 deletions

View File

@ -395,10 +395,6 @@ static const char *pmf_verbose[] =
int main(int argc, char *argv[])
{
#if (!PSTANDALONE)
track_memory(true);
{
#endif
tool_options_t opts;
int ret;
@ -462,9 +458,5 @@ int main(int argc, char *argv[])
}
pstring::resetmem();
#if (!PSTANDALONE)
}
dump_unfreed_mem();
#endif
return 0;
}

View File

@ -237,10 +237,6 @@ void usage(nlwav_options_t &opts)
int main(int argc, char *argv[])
{
#if (!PSTANDALONE)
track_memory(true);
{
#endif
nlwav_options_t opts;
int ret;
@ -258,10 +254,6 @@ int main(int argc, char *argv[])
}
convert(opts);
#if (!PSTANDALONE)
}
dump_unfreed_mem();
#endif
return 0;
}