diff options
| author | Mattias Andrée <m@maandree.se> | 2026-02-22 15:04:45 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2026-02-22 15:04:45 +0100 |
| commit | e8c10135a3878ef29fa64c594b39c3cb4900cced (patch) | |
| tree | 38ca9d933467184587c610fc71db894ecaf60ac8 | |
| parent | m fix + add tests (diff) | |
| download | liblog-e8c10135a3878ef29fa64c594b39c3cb4900cced.tar.gz liblog-e8c10135a3878ef29fa64c594b39c3cb4900cced.tar.bz2 liblog-e8c10135a3878ef29fa64c594b39c3cb4900cced.tar.xz | |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | liblog.h | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -20,7 +20,7 @@ /** - * Mark the message as incomplete an deferred + * Mark the message as incomplete and deferred * printing until LIBLOG_XLOG_UNCORK is used. */ #define LIBLOG_XLOG_CORK 0x0001 @@ -34,21 +34,21 @@ #define LIBLOG_XLOG_UNCORK 0x0002 /** - * Output a backtrace even if the it is not + * Output a backtrace even if it is not * configured that backtraces should be printed * for the selected log level. */ #define LIBLOG_XLOG_BACKTRACE 0x0004 /** - * Do not output a backtrace even if the it is + * Do not output a backtrace even if it is * configured that backtraces should be printed * for the selected log level. */ #define LIBLOG_XLOG_NO_BACKTRACE 0x0008 /** - * Do not output any new text (apport from potential + * Do not output any new text (apart from potential * backtrace); allowing `fmt` to be `NULL`. */ #define LIBLOG_XLOG_NO_TEXT 0x0010 @@ -743,7 +743,7 @@ liblog_use_stderr_for_range(struct liblog_context *ctx, const char *prefixfmt, i * @param flags Modifications the the function's behaviour; * may be 0 or the OR of any of the following values: * - LIBLOG_XLOG_CORK: - * Mark the message as incomplete an deferred + * Mark the message as incomplete and deferred * printing until LIBLOG_XLOG_UNCORK is used * - LIBLOG_XLOG_UNCORK: * Output message printed since the first @@ -751,15 +751,15 @@ liblog_use_stderr_for_range(struct liblog_context *ctx, const char *prefixfmt, i * LIBLOG_XLOG_UNCORK if any) as one complete * message * - LIBLOG_XLOG_BACKTRACE: - * Output a backtrace even if the it is not + * Output a backtrace even if it is not * configured that backtraces should be printed * for the selected log level * - LIBLOG_XLOG_NO_BACKTRACE: - * Do not output a backtrace even if the it is + * Do not output a backtrace even if it is * configured that backtraces should be printed * for the selected log level * - LIBLOG_XLOG_NO_TEXT: - * Do not output any new text (apport from potential + * Do not output any new text (apart from potential * backtrace); allowing `fmt` to be `NULL` * However, LIBLOG_XLOG_CORK and LIBLOG_XLOG_UNCORK * cannot be combined, nor can LIBLOG_XLOG_BACKTRACE @@ -783,7 +783,7 @@ liblog_vxlog(struct liblog_context *ctx, enum liblog_level level, unsigned flags * @param flags Modifications the the function's behaviour; * may be 0 or the OR of any of the following values: * - LIBLOG_XLOG_CORK: - * Mark the message as incomplete an deferred + * Mark the message as incomplete and deferred * printing until LIBLOG_XLOG_UNCORK is used * - LIBLOG_XLOG_UNCORK: * Output message printed since the first @@ -791,15 +791,15 @@ liblog_vxlog(struct liblog_context *ctx, enum liblog_level level, unsigned flags * LIBLOG_XLOG_UNCORK if any) as one complete * message * - LIBLOG_XLOG_BACKTRACE: - * Output a backtrace even if the it is not + * Output a backtrace even if it is not * configured that backtraces should be printed * for the selected log level * - LIBLOG_XLOG_NO_BACKTRACE: - * Do not output a backtrace even if the it is + * Do not output a backtrace even if it is * configured that backtraces should be printed * for the selected log level * - LIBLOG_XLOG_NO_TEXT: - * Do not output any new text (apport from potential + * Do not output any new text (apart from potential * backtrace); allowing `fmt` to be `NULL`. * However, LIBLOG_XLOG_CORK and LIBLOG_XLOG_UNCORK * cannot be combined, nor can LIBLOG_XLOG_BACKTRACE |
