Mark an unused parameter as such.

Change-Id: Ia319d7b8523ab9b9e9d8ec8533ebdcf4a506a69e
Reviewed-on: https://code.wireshark.org/review/2096
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
AndersBroman 2014-06-10 10:56:36 +02:00 committed by Anders Broman
parent 5cff2b6d03
commit e1f0ee412f
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ ws_cpuid(guint32 *CPUInfo, int selector)
#else /* (__i386__) */
static int
ws_cpuid(guint32 *CPUInfo, int selector _U_)
ws_cpuid(guint32 *CPUInfo _U_, int selector _U_)
{
/* TODO: need a test if older proccesors have the cpuid instruction */
return 0;