diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-30 21:20:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-30 21:20:30 (GMT) |
commit | 186145578675341deb63fd53e6080896695c3574 (patch) | |
tree | 4aa12b60fc6ad7ca4c19658d774dee4326ad165b /generic/tcl.h | |
parent | 784535a35c779f46886fe9a880b706c979efdd77 (diff) | |
parent | 191fecdc87592dfea94718bc716551c72f072c33 (diff) | |
download | tcl-186145578675341deb63fd53e6080896695c3574.zip tcl-186145578675341deb63fd53e6080896695c3574.tar.gz tcl-186145578675341deb63fd53e6080896695c3574.tar.bz2 |
Fix [0cb3554903]: macOS 13 SDK deprecates sprintf()
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 8b7c4ed..942ca72 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -393,7 +393,7 @@ typedef long LONG; * * Note on converting between Tcl_WideInt and strings. This implementation (in * tclObj.c) depends on the function - * sprintf(...,"%" TCL_LL_MODIFIER "d",...). + * snprintf(...,"%" TCL_LL_MODIFIER "d",...). */ #if !defined(TCL_WIDE_INT_TYPE)&&!defined(TCL_WIDE_INT_IS_LONG) |