X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmathql_test%2Fmqitop.ml;h=0558410520f26f94493898d1fe553632289ee57c;hb=97c2d258a5c524eb5c4b85208899d80751a2c82f;hp=7dd43888c0eb4165501fee6d532e81c55272097a;hpb=0e74e8e94eada756157addce67e4adeb8dff1feb;p=helm.git diff --git a/helm/mathql_test/mqitop.ml b/helm/mathql_test/mqitop.ml index 7dd43888c..055841052 100644 --- a/helm/mathql_test/mqitop.ml +++ b/helm/mathql_test/mqitop.ml @@ -31,11 +31,12 @@ module I = MQueryInterpreter module C = MQIConn let _ = + Helm_registry.load_from "/home/fguidi/miohelm/gTopLevel.conf.xml"; let t = U.start_time () in let ich = Lexing.from_channel stdin in let flags = if Array.length Sys.argv >= 2 then Sys.argv.(1) else "" in let log s = print_string s; flush stdout in - let handle = C.init (C.flags_of_string flags) log in + let handle = C.init ~flags:(C.flags_of_string flags) ~log:log () in if not (C.connected handle) then begin print_endline "mqitop: no connection"; flush stdout end;