summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorculler <culler>2024-07-23 01:48:14 (GMT)
committerculler <culler>2024-07-23 01:48:14 (GMT)
commit41f0cfd749135c680a974eef07475bc2a6ebe94f (patch)
tree5e28f37e672774c9b5dd3dc722172b31420cdbeb /generic
parent09733fc42e0c5063fc5d7c1feffdc59f65cb0e31 (diff)
parentd2921cacf7d0e1aefc3a76d3e07898a95eedb84c (diff)
downloadtk-41f0cfd749135c680a974eef07475bc2a6ebe94f.zip
tk-41f0cfd749135c680a974eef07475bc2a6ebe94f.tar.gz
tk-41f0cfd749135c680a974eef07475bc2a6ebe94f.tar.bz2
Merge core-8-6-branch
Diffstat (limited to 'generic')
-rw-r--r--generic/tkObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c
index c2729d1..d5c702a 100644
--- a/generic/tkObj.c
+++ b/generic/tkObj.c
@@ -284,7 +284,7 @@ GetPixelsFromObjEx(
double d;
PixelRep *pixelPtr;
static const double bias[] = {
- 1.0L, 10.0L, 25.4L, 3.527777777777777777L /*25.4 / 72.0*/
+ 1.0L, 10.0L, 25.4L, 0.3527777777777777777L /*25.4 / 72.0*/
};
if (objPtr->typePtr != &pixelObjType.objType) {
@@ -642,7 +642,7 @@ Tk_GetMMFromObj(
double d;
MMRep *mmPtr;
static const double bias[] = {
- 10.0, 25.4, 1.0, 0.352777777777777777 /*25.4 / 72.0*/
+ 10.0L, 25.4L, 1.0L, 0.352777777777777777L /*25.4 / 72.0*/
};
if (objPtr->typePtr != &mmObjType.objType) {