ocarina: Switch to new idle::run_task() function

Part of my rewrite involved moving the run_task() function to a new
namespace.  Ocarina now uses the new function.
This commit is contained in:
Bryan Schumaker 2011-10-27 15:10:42 -04:00
parent 707e7b3427
commit ab9b76a0b4
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
static gboolean ocarina_idle(gpointer data)
{
if (libsaria::idle_task() == 0)
if (libsaria::idle::run_task() == 0)
return FALSE; /* There are no idle events left */
return TRUE; /* Process remaining idle events */
}