diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-11 14:53:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-11 14:53:58 (GMT) |
commit | 5ce60a33287e4745db2567abbed8ae8cc909b8c2 (patch) | |
tree | 7d8d3c9e568859c0045a232ba779e021ecaf985a /unix/tclUnixCompat.c | |
parent | 701334ed37accb494de29076c4810d8d808a2ef7 (diff) | |
download | tcl-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/tclUnixCompat.c')
-rw-r--r-- | unix/tclUnixCompat.c | 4 |
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; |