Fix Linux compile errors

This commit is contained in:
Brandon Munger 2016-01-08 15:24:05 -05:00
parent 8b31662264
commit 27508c8415
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;
}