From 2fc458ecceed06713653e0f11293a12b88d45e65 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Thu, 22 Aug 2002 14:41:38 -0400 Subject: [PATCH] minor warning fix --- Source/cmCPluginAPI.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 91dee204c..681726630 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(); }