Fix a bug introduced by a change in the Archive::writeToDisk interface.

llvm-svn: 29870
This commit is contained in:
Reid Spencer 2006-08-25 05:29:36 +00:00
parent ebf083391f
commit 6ea5c4eafb

View File

@ -74,7 +74,7 @@ int main(int argc, char **argv) {
if (!TheArchive)
throw err_msg;
if (!TheArchive->writeToDisk(true, false, false, &err_msg ))
if (TheArchive->writeToDisk(true, false, false, &err_msg ))
throw err_msg;
if (Verbose)