~ubuntu-branches/ubuntu/karmic/tasks/karmic

« back to all changes in this revision

Viewing changes to libkoto/koto-task.c

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton
  • Date: 2007-06-14 13:40:08 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070614134008-y1icokig2zuzb8am
Tags: 0.8-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  g_return_val_if_fail (comp, NULL);
40
40
  
41
41
  task = g_slice_new (KotoTask);
42
 
  g_atomic_int_set (&task->ref_count, 1);
 
42
  task->ref_count = 1;
43
43
  task->comp = comp;
44
44
 
45
45
  return task;