mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
[project @ 2004-01-05 11:04:54 by jmb]
Fix inappropriate cast. svn path=/import/netsurf/; revision=481
This commit is contained in:
parent
62245d13ec
commit
a4bfc247db
@ -445,7 +445,7 @@ void ro_gui_throb(void)
|
||||
{
|
||||
g->throbtime = nowtime;
|
||||
g->throbber++;
|
||||
if (theme_throbs < (float)g->throbber)
|
||||
if (theme_throbs < (unsigned int)g->throbber)
|
||||
g->throbber = 0;
|
||||
sprintf(g->throb_buf, "throbber%u", g->throbber);
|
||||
wimp_set_icon_state(g->data.browser.toolbar,
|
||||
|
Loading…
Reference in New Issue
Block a user