From: Philippe Proulx Date: Sat, 13 May 2017 19:12:52 +0000 (-0400) Subject: logging-internal.h: fix include name in comments X-Git-Tag: v2.0.0-pre1~270 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=40c958cfbacf5f2deb768ce216aa2395dd888462 logging-internal.h: fix include name in comments Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/include/babeltrace/logging-internal.h b/include/babeltrace/logging-internal.h index 5cad0c32..1480a082 100644 --- a/include/babeltrace/logging-internal.h +++ b/include/babeltrace/logging-internal.h @@ -16,7 +16,7 @@ * compiler command line): * * #define BT_LOG_VERSION_REQUIRED 4 - * #include + * #include * * Compilation will fail when included file has different version. */ @@ -74,7 +74,7 @@ * before including bt_log.h: * * #define BT_LOG_LEVEL BT_LOG_VERBOSE - * #include + * #include * * If both BT_LOG_DEF_LEVEL and BT_LOG_LEVEL are undefined, then BT_LOG_INFO * will be used for release builds (NDEBUG is defined) and BT_LOG_DEBUG @@ -119,7 +119,7 @@ * Example: * * #define BT_LOG_OUTPUT_LEVEL g_module_log_level - * #include + * #include * static int g_module_log_level = BT_LOG_INFO; * static void foo() { * BT_LOGI("Will check g_module_log_level for output log level"); @@ -137,7 +137,7 @@ * must be the first field in this structure: * * #define BT_LOG_OUTPUT_LEVEL (g_config.log_level) - * #include + * #include * struct config { * int log_level; * unsigned other_field; @@ -182,7 +182,7 @@ * before including bt_log.h: * * #define BT_LOG_TAG "MAIN" - * #include + * #include * * If both BT_LOG_DEF_TAG and BT_LOG_TAG are undefined no tag will be added to * the log message (tag prefix still could be added though). @@ -231,7 +231,7 @@ * before including bt_log.h: * * #define BT_LOG_SRCLOC BT_LOG_SRCLOC_NONE - * #include + * #include * * If both BT_LOG_DEF_SRCLOC and BT_LOG_SRCLOC are undefined, then * BT_LOG_SRCLOC_NONE will be used for release builds (NDEBUG is defined) and @@ -279,7 +279,7 @@ * very careful not to push such temporary changes to source control): * * #define BT_LOG_CENSORING BT_LOG_UNCENSORED - * #include + * #include * * If both BT_LOG_DEF_CENSORING and BT_LOG_CENSORING are undefined, then * BT_LOG_CENSORED will be used for release builds (NDEBUG is defined) and @@ -328,7 +328,7 @@ * * For example, in log_config.c: * - * #include + * #include * BT_LOG_DEFINE_TAG_PREFIX = "MyApp"; * BT_LOG_DEFINE_GLOBAL_FORMAT = {CUSTOM_MEM_WIDTH}; * BT_LOG_DEFINE_GLOBAL_OUTPUT = {BT_LOG_PUT_STD, custom_output_callback, 0}; @@ -400,7 +400,7 @@ * * // KittyHttpLogging.h * #define BT_LOG_LIBRARY_PREFIX KittyHttp_ - * #include + * #include * * Regardless of the method chosen, the end result is that bt_log symbols will * be prefixed with "KittyHttp_", so if a user of KittyHttp (say DogeBrowser)