diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-11-11 14:53:58 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-11-11 14:53:58 (GMT) |
commit | d1cf7bb2bb2771ab24e150e2c05d4ff758b2b1eb (patch) | |
tree | 4083d18ec491c923adb6264fb6bd8ff4ab369d82 /unix/tclUnixCompat.c | |
parent | 15093878dc81b23ce03ca00955fa41d3c2923b30 (diff) | |
download | tcl-d1cf7bb2bb2771ab24e150e2c05d4ff758b2b1eb.zip tcl-d1cf7bb2bb2771ab24e150e2c05d4ff758b2b1eb.tar.gz tcl-d1cf7bb2bb2771ab24e150e2c05d4ff758b2b1eb.tar.bz2 |
Fix harmless gcc warning message: using "unsigned" doesn't serve any purpose, actually.
FossilOrigin-Name: 01243c07ffe2430ba26e03f9cafc29a3dbb1f627
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; |