From: Lucas De Marchi Date: Mon, 9 Jan 2012 04:35:41 +0000 (-0200) Subject: doc: fix comments format X-Git-Tag: v4~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4cc6ea5eb8bcaa88415eeefcd3a8bd326c3f2d7;p=thirdparty%2Fkmod.git doc: fix comments format --- diff --git a/libkmod/libkmod.c b/libkmod/libkmod.c index 8e3acf72..1e8b6ca9 100644 --- a/libkmod/libkmod.c +++ b/libkmod/libkmod.c @@ -633,7 +633,7 @@ static bool is_cache_invalid(const char *path, unsigned long long stamp) * Check if indexes and configuration files changed on disk and the current * context is not valid anymore. * - * Returns KMOD_RESOURCES_OK if resources are still valid, + * Returns: KMOD_RESOURCES_OK if resources are still valid, * KMOD_RESOURCES_MUST_RELOAD if it's sufficient to call * kmod_unload_resources() and kmod_load_resources() or * KMOD_RESOURCES_MUST_RECREATE if @ctx must be re-created. diff --git a/libkmod/macro.h b/libkmod/macro.h index c0c4dc7e..06300df8 100644 --- a/libkmod/macro.h +++ b/libkmod/macro.h @@ -49,7 +49,7 @@ ((char *)(member_ptr) - offsetof(containing_type, member)) \ - check_types_match(*(member_ptr), ((containing_type *)0)->member)) -/** +/* * BUILD_ASSERT_OR_ZERO - assert a build-time dependency, as an expression. * @cond: the compile-time condition which must be true. *