lib: Use caml_failwith instead of compat wrapper failwith.
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 5 Oct 2017 10:15:01 +0000 (11:15 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 5 Oct 2017 10:15:01 +0000 (11:15 +0100)
augeas-c.c

index 885b829..da11acc 100644 (file)
@@ -1,5 +1,5 @@
 /* Augeas OCaml bindings
- * Copyright (C) 2008-2012 Red Hat Inc., Richard W.M. Jones
+ * Copyright (C) 2008-2017 Red Hat Inc., Richard W.M. Jones
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -215,7 +215,7 @@ ocaml_augeas_get (value tv, value pathv)
   else if (r == -1)            /* Error or multiple matches */
     raise_error (t, "Augeas.get");
   else
-    failwith ("Augeas.get: bad return value");
+    caml_failwith ("Augeas.get: bad return value");
 
   CAMLreturn (optv);
 }