From 7b02221059fce51d8f12bf93b43d32d56aa4fe47 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 30 Dec 2005 14:31:13 -0500 Subject: [PATCH] COMP: Remove unused variable --- Source/cmSystemTools.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 7caafd0f4..1a8c36edd 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1589,8 +1589,7 @@ bool cmSystemTools::ListTar(const char* outFileName, std::vector& f return false; } - int i; - while ((i = th_read(t)) == 0) + while ((th_read(t)) == 0) { const char* filename = th_get_pathname(t); files.push_back(filename);