summaryrefslogtreecommitdiffstats
path: root/generic/tkObj.c
diff options
context:
space:
mode:
authorculler <culler>2024-07-23 01:44:27 (GMT)
committerculler <culler>2024-07-23 01:44:27 (GMT)
commitd2921cacf7d0e1aefc3a76d3e07898a95eedb84c (patch)
tree2256349826eda3d251332db3b2e189cd78763840 /generic/tkObj.c
parent64a58f2cb2f439a85bbf7188b4cf2b9366a6ce55 (diff)
downloadtk-d2921cacf7d0e1aefc3a76d3e07898a95eedb84c.zip
tk-d2921cacf7d0e1aefc3a76d3e07898a95eedb84c.tar.gz
tk-d2921cacf7d0e1aefc3a76d3e07898a95eedb84c.tar.bz2
Move the other decimal point.
Diffstat (limited to 'generic/tkObj.c')
-rw-r--r--generic/tkObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c
index b0f7897..596a1cc 100644
--- a/generic/tkObj.c
+++ b/generic/tkObj.c
@@ -198,7 +198,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) {
@@ -549,7 +549,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) {