From ab9b76a0b44b4d0c35f0d75a3281901763b7ed54 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Thu, 27 Oct 2011 15:10:42 -0400 Subject: [PATCH] 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. --- ocarina/ocarina.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocarina/ocarina.cpp b/ocarina/ocarina.cpp index 6a20c47b..784a8a27 100644 --- a/ocarina/ocarina.cpp +++ b/ocarina/ocarina.cpp @@ -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 */ }