~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/rb-debug.c

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
void
187
187
rb_profiler_dump (RBProfiler *profiler)
188
188
{
189
 
        long elapsed;
 
189
        gulong elapsed;
190
190
        double seconds;
191
191
 
192
192
        if (debugging == FALSE)
195
195
                return;
196
196
 
197
197
        seconds = g_timer_elapsed (profiler->timer, &elapsed);
198
 
        
 
198
 
199
199
        rb_debug ("PROFILER %s %ld ms (%f s) elapsed", profiler->name, 
200
200
                  elapsed / (G_USEC_PER_SEC / 1000), seconds);
201
201
}