summaryrefslogtreecommitdiff
path: root/Source/cmCPluginAPI.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-08-22 14:41:38 -0400
committerKen Martin <ken.martin@kitware.com>2002-08-22 14:41:38 -0400
commit2fc458ecceed06713653e0f11293a12b88d45e65 (patch)
tree92f4f54ef0d9c8afbc35a57aa9d695c059488ea5 /Source/cmCPluginAPI.cxx
parentb5cff36fb7b5e432c423771ef7e41e925eb9d94f (diff)
downloadcmake-2fc458ecceed06713653e0f11293a12b88d45e65.tar.gz
minor warning fix
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r--Source/cmCPluginAPI.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index 91dee204ce..6817266306 100644
--- a/Source/cmCPluginAPI.cxx
+++ b/Source/cmCPluginAPI.cxx
@@ -32,11 +32,11 @@ void cmSetClientData(void *info, void *cd)
((cmLoadedCommandInfo *)info)->ClientData = cd;
}
-unsigned int cmGetCacheMajorVersion(void *arg)
+unsigned int cmGetCacheMajorVersion(void *)
{
return cmMakefile::GetCacheMajorVersion();
}
-unsigned int cmGetCacheMinorVersion(void *arg)
+unsigned int cmGetCacheMinorVersion(void *)
{
return cmMakefile::GetCacheMinorVersion();
}