diff options
author | culler <culler> | 2024-07-21 17:37:57 (GMT) |
---|---|---|
committer | culler <culler> | 2024-07-21 17:37:57 (GMT) |
commit | 0b6bf2703a09587c1ed87b5350c04210fa8edcea (patch) | |
tree | cb663dc88e8ab05749a0157cbe67cbc3102dfb37 /generic | |
parent | a7042bc073cde4769058cf3d511ef07ef14493fd (diff) | |
download | tk-0b6bf2703a09587c1ed87b5350c04210fa8edcea.zip tk-0b6bf2703a09587c1ed87b5350c04210fa8edcea.tar.gz tk-0b6bf2703a09587c1ed87b5350c04210fa8edcea.tar.bz2 |
Accommodate Microsoft compilers which do not allow expressions in a literal constant.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkObj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c index c82dd06..cb7030e 100644 --- a/generic/tkObj.c +++ b/generic/tkObj.c @@ -198,7 +198,7 @@ GetPixelsFromObjEx( double d; PixelRep *pixelPtr; static const double bias[] = { - 1.0, 10.0, 25.4, 25.4 / 72.0 + 1.0L, 10.0L, 25.4L, 3.527777777777777777L /*25.4 / 72.0*/ }; if (objPtr->typePtr != &pixelObjType) { |