mirror of https://github.com/XEphem/XEphem.git
Remove cast to non-standard type `ulong`
Per discussion #23, where a user reported `ulong` missing on macOS.
This commit is contained in:
parent
b8450a6387
commit
8fb84dc758
|
|
@ -1428,7 +1428,7 @@ XtInputId *id;
|
|||
}
|
||||
|
||||
/* report progress */
|
||||
pm_set ((ulong)fip->nbytes * 100 / fip->totbytes);
|
||||
pm_set (fip->nbytes * 100 / fip->totbytes);
|
||||
XmUpdateDisplay (toplevel_w);
|
||||
|
||||
/* keep going if expecting more */
|
||||
|
|
|
|||
Loading…
Reference in New Issue