Revision: 3168 http://trac.macosforge.org/projects/ruby/changeset/3168 Author: lsansonetti@apple.com Date: 2009-12-23 14:08:20 -0800 (Wed, 23 Dec 2009) Log Message: ----------- fixed build Modified Paths: -------------- MacRuby/trunk/gcd.c Modified: MacRuby/trunk/gcd.c =================================================================== --- MacRuby/trunk/gcd.c 2009-12-23 22:00:50 UTC (rev 3167) +++ MacRuby/trunk/gcd.c 2009-12-23 22:08:20 UTC (rev 3168) @@ -310,7 +310,7 @@ queue->suspension_count = 0; queue->should_release_queue = 1; queue->queue = dispatch_queue_create(RSTRING_PTR(name), NULL); - assert(queue->queue != NULL) + assert(queue->queue != NULL); dispatch_retain(queue->queue); return self; }