Displaying 1 result from an estimated 1 matches for "__builtin_free".
2023 Feb 15
2
[libnbd PATCH v3 02/29] generator/C.ml: use space consistently in func. and func.-like macro calls
...ile changed, 10 insertions(+), 10 deletions(-)
diff --git a/generator/C.ml b/generator/C.ml
index f9171996dde0..07c924c48ccf 100644
--- a/generator/C.ml
+++ b/generator/C.ml
@@ -250,15 +250,15 @@ let
*)
(match ret with
| RString ->
- pr "\n LIBNBD_ATTRIBUTE_ALLOC_DEALLOC(__builtin_free)";
+ pr "\n LIBNBD_ATTRIBUTE_ALLOC_DEALLOC (__builtin_free)";
| _ -> ()
);
(* Output __attribute__((nonnull)) for the function parameters:
* eg. struct nbd_handle *, int, char *
* => [ true, false, true ]
- * => LIBNBD_ATTRIBUTE_NONNULL(...