Skip to content

Commit

Permalink
Merge core-8-6-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Jul 23, 2024
2 parents 09733fc + d2921ca commit 41f0cfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generic/tkObj.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 41f0cfd

Please sign in to comment.