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.
This commit is contained in:
Tim Edwards 2024-08-30 01:48:38 -04:00
parent 0c36365db8
commit 974621ebe7
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.489
8.3.490

View File

@ -981,7 +981,7 @@ CmdWhat(w, cmd)
if (EditCellUse == NULL)
{
editNull = TRUE;
EditCellUse = w->w_surfaceID;
EditCellUse = (CellUse *)w->w_surfaceID;
}
/* Find all the selected paint and print out the layer names. */