diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-12 15:52:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-12 15:52:32 (GMT) |
commit | dc5d1edcfda213de5ee4256681cc2188551fbd86 (patch) | |
tree | 0f7c11a1c51c64246df7ca160e473460c5094942 /Source/cmSystemTools.cxx | |
parent | bd60a2469a358a49162c2b1a078a377f7223da71 (diff) | |
download | CMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.zip CMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.tar.gz CMake-dc5d1edcfda213de5ee4256681cc2188551fbd86.tar.bz2 |
Fix missing return value.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 1 |
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, |