Skip to content

Commit 974621e

Browse files
Corrected a missing pointer to integer cast in code that was
added fairly recently when getting rid of crashes related to commands operating on non-edit cells. The lack of a cast was prevening compilation on systems with more rigorous error checking.
1 parent 0c36365 commit 974621e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.3.489
1+
8.3.490

commands/CmdTZ.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ CmdWhat(w, cmd)
981981
if (EditCellUse == NULL)
982982
{
983983
editNull = TRUE;
984-
EditCellUse = w->w_surfaceID;
984+
EditCellUse = (CellUse *)w->w_surfaceID;
985985
}
986986

987987
/* Find all the selected paint and print out the layer names. */

0 commit comments

Comments
 (0)