From 4e377c28a930f9a52577973f10833bf1546a0c84 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 5 Dec 2011 16:42:45 +1030 Subject: lib/ccan/typesafe_cb: fix example macro ordering in typesafe_cb_preargs documentation. Signed-off-by: Rusty Russell (Imported from CCAN commit 12652625db55f6586e95fc5edc73e1e85bae8a5c) --- lib/ccan/typesafe_cb/typesafe_cb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ccan') diff --git a/lib/ccan/typesafe_cb/typesafe_cb.h b/lib/ccan/typesafe_cb/typesafe_cb.h index 3dddd501a3..884314975e 100644 --- a/lib/ccan/typesafe_cb/typesafe_cb.h +++ b/lib/ccan/typesafe_cb/typesafe_cb.h @@ -101,8 +101,8 @@ * Example: * void _register_callback(void (*fn)(int, void *arg), void *arg); * #define register_callback(fn, arg) \ - * _register_callback(typesafe_cb_preargs(void, (fn), void *, \ - * (arg), int), \ + * _register_callback(typesafe_cb_preargs(void, void *, \ + * (fn), (arg), int), \ * (arg)) */ #define typesafe_cb_preargs(rtype, atype, fn, arg, ...) \ -- cgit