diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-16 08:35:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-16 08:35:30 (GMT) |
commit | 7a8cfcd9961d421efa1d708d250e0d981d0e8005 (patch) | |
tree | b73b22538279256cd5c59d6c9ec227c8a8a6411d | |
parent | 6ead98de291ba352c56b0d1b98c98f3db380bafb (diff) | |
download | tcl-7a8cfcd9961d421efa1d708d250e0d981d0e8005.zip tcl-7a8cfcd9961d421efa1d708d250e0d981d0e8005.tar.gz tcl-7a8cfcd9961d421efa1d708d250e0d981d0e8005.tar.bz2 |
Don't use deprecated function
-rw-r--r-- | win/tclWinSerial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinSerial.c b/win/tclWinSerial.c index 9e9d1af..458b05b 100644 --- a/win/tclWinSerial.c +++ b/win/tclWinSerial.c @@ -376,7 +376,7 @@ SerialGetMilliseconds(void) { Tcl_Time time; - TclpGetTime(&time); + Tcl_GetTime(&time); return (time.sec * 1000 + time.usec / 1000); } |