summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-07-09 04:41:51 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2019-07-09 04:43:09 +0200
commit11d0cc07433206d5cc52fdfa7e91c2e28ef276ca (patch)
tree7b0ba11291830c0b8d6038be87684795f4f423cb /tools
parent1f25fd18f006c89c5e387b4ca8546025bc3a969b (diff)
Fix Android build after commit fc0850d2784eaa79257cf1ea8c5d078c5241b5bf
The second parameter is unused Change-Id: Iaf82ea24737a162c6aa8ce6b9e237f656a10020a Reviewed-on: https://gerrit.libreoffice.org/75283 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/misc/cpuid.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/misc/cpuid.cxx b/tools/source/misc/cpuid.cxx
index c4d4b8147595..41791be27897 100644
--- a/tools/source/misc/cpuid.cxx
+++ b/tools/source/misc/cpuid.cxx
@@ -28,7 +28,7 @@ void getCpuId(uint32_t array[4], uint32_t nInfoType)
__cpuid_count(nInfoType, 0, *(array + 0), *(array + 1), *(array + 2), *(array + 3));
}
#else
-void getCpuId(uint32_t array[4], uint32_t nInfoType)
+void getCpuId(uint32_t array[4], uint32_t /*nInfoType*/)
{
array[0] = array[1] = array[2] = array[3] = 0;
}