Remove a bunch of redundant casts.
This commit is contained in:
parent
ee6d72f3b8
commit
4f59fc9967
125 changed files with 417 additions and 432 deletions
|
@ -89,7 +89,7 @@ news(void)
|
|||
then = now - days(3);
|
||||
*/
|
||||
pr("\nThe details of Empire news since %s", ctime(&then));
|
||||
while (nxtitem(&nstr, (s_char *)&nws)) {
|
||||
while (nxtitem(&nstr, &nws)) {
|
||||
if (nws.nws_when < then)
|
||||
continue;
|
||||
if (opt_HIDDEN) {
|
||||
|
@ -106,7 +106,7 @@ news(void)
|
|||
continue;
|
||||
pr("\n\t === %s ===\n", page_headings[page]);
|
||||
snxtitem_rewind(&nstr);
|
||||
while (nxtitem(&nstr, (s_char *)&nws)) {
|
||||
while (nxtitem(&nstr, &nws)) {
|
||||
if (rpt[(int)nws.nws_vrb].r_newspage != page)
|
||||
continue;
|
||||
if (nws.nws_when < then)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue