summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-11-12 15:52:32 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-11-12 15:52:32 (GMT)
commitdc5d1edcfda213de5ee4256681cc2188551fbd86 (patch)
tree0f7c11a1c51c64246df7ca160e473460c5094942
parentbd60a2469a358a49162c2b1a078a377f7223da71 (diff)
downloadCMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.zip
CMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.tar.gz
CMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.tar.bz2
Fix missing return value.
-rw-r--r--Source/cmSystemTools.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 88f96d1..f953b71 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -2000,6 +2000,7 @@ int copy_data(struct archive *ar, struct archive *aw)
return (r);
}
}
+ return r;
}
bool extract_tar(const char* outFileName, bool verbose,