Remove cast to non-standard type `ulong`

Per discussion #23, where a user reported `ulong` missing on macOS.
This commit is contained in:
Brandon Rhodes 2021-12-06 15:37:12 -05:00
parent b8450a6387
commit 8fb84dc758
1 changed files with 1 additions and 1 deletions

View File

@ -1428,7 +1428,7 @@ XtInputId *id;
} }
/* report progress */ /* report progress */
pm_set ((ulong)fip->nbytes * 100 / fip->totbytes); pm_set (fip->nbytes * 100 / fip->totbytes);
XmUpdateDisplay (toplevel_w); XmUpdateDisplay (toplevel_w);
/* keep going if expecting more */ /* keep going if expecting more */