]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/iokit/iokit.factor
alien.data: remove second quotation parameter from with-out-parameters, now all value...
[factor.git] / basis / iokit / iokit.factor
index 5720fc5997896a1ed9066686d8fa0e5979da9611..4dc493222289aa2ed01b19bc0374ccb6a0b0bb45 100644 (file)
@@ -131,11 +131,11 @@ TUPLE: mach-error error-code error-string ;
     dup KERN_SUCCESS = [ drop ] [ <mach-error> throw ] if ;
 
 : master-port ( -- port )
-    MACH_PORT_NULL { uint } [ IOMasterPort mach-error ] [ ] with-out-parameters ;
+    MACH_PORT_NULL { uint } [ IOMasterPort mach-error ] with-out-parameters ;
 
 : io-services-matching-dictionary ( nsdictionary -- iterator )
     master-port swap
-    { uint } [ IOServiceGetMatchingServices mach-error ] [ ] with-out-parameters ;
+    { uint } [ IOServiceGetMatchingServices mach-error ] with-out-parameters ;
 
 : io-services-matching-service ( service -- iterator )
     IOServiceMatching io-services-matching-dictionary ;