summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-11 14:53:58 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-11 14:53:58 (GMT)
commit5ce60a33287e4745db2567abbed8ae8cc909b8c2 (patch)
tree7d8d3c9e568859c0045a232ba779e021ecaf985a /unix
parent701334ed37accb494de29076c4810d8d808a2ef7 (diff)
downloadtcl-5ce60a33287e4745db2567abbed8ae8cc909b8c2.zip
tcl-5ce60a33287e4745db2567abbed8ae8cc909b8c2.tar.gz
tcl-5ce60a33287e4745db2567abbed8ae8cc909b8c2.tar.bz2
Fix harmless gcc warning message: using "unsigned" doesn't serve any purpose, actually.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixCompat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c
index 1247061..ea6067e 100644
--- a/unix/tclUnixCompat.c
+++ b/unix/tclUnixCompat.c
@@ -988,8 +988,8 @@ CopyString(
int
TclWinCPUID(
- unsigned int index, /* Which CPUID value to retrieve. */
- unsigned int *regsPtr) /* Registers after the CPUID. */
+ int index, /* Which CPUID value to retrieve. */
+ int *regsPtr) /* Registers after the CPUID. */
{
int status = TCL_ERROR;