]> gitweb.factorcode.org Git - factor.git/blobdiff - unmaintained/db/mysql/ffi/ffi.factor
"stdcall" -> stdcall
[factor.git] / unmaintained / db / mysql / ffi / ffi.factor
index 1f50035a81cecd26f66d43f9a7249c5d1b5fbd5c..98fd0b38cb403674a2fa63f68f251cb72f70504f 100644 (file)
@@ -6,7 +6,7 @@ USING: alien alien.syntax combinators kernel system ;
 IN: db.mysql.ffi
 
 << "mysql" {
-    { [ os winnt? ] [ "libmySQL.dll" "stdcall" ] }
+    { [ os winnt? ] [ "libmySQL.dll" stdcall ] }
     { [ os macosx? ] [ "libmysqlclient.14.dylib" cdecl ] }
     { [ os unix? ] [ "libmysqlclient.so.14" cdecl ] }
 } cond add-library >>