From 78840c01a52b57d64a97586434aa5fe963218154 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Revert previous change. --- libvirt/libvirt_c_epilogue.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libvirt/libvirt_c_epilogue.c b/libvirt/libvirt_c_epilogue.c index df1fabb..efabed0 100644 --- a/libvirt/libvirt_c_epilogue.c +++ b/libvirt/libvirt_c_epilogue.c @@ -80,7 +80,8 @@ _raise_virterror (virConnectPtr conn, const char *fn) caml_raise_with_arg (*caml_named_value ("ocaml_libvirt_virterror"), rv); /*NOTREACHED*/ - CAMLreturn0; + /* Suppresses a compiler warning. */ + (void) caml__frame; } /* Raise an error if a function is not supported. */ @@ -94,7 +95,8 @@ not_supported (const char *fn) caml_raise_with_arg (*caml_named_value ("ocaml_libvirt_not_supported"), fnv); /*NOTREACHED*/ - CAMLreturn0; + /* Suppresses a compiler warning. */ + (void) caml__frame; } /* Convert the virErrorNumber, virErrorDomain and virErrorLevel enums -- 1.8.3.1