summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--LICENSE2
-rw-r--r--liblog.h10
2 files changed, 6 insertions, 6 deletions
diff --git a/LICENSE b/LICENSE
index f930ea6..46cd895 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
ISC License
-© 2024 Mattias Andrée <m@maandree.se>
+© 2024, 2025 Mattias Andrée <m@maandree.se>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/liblog.h b/liblog.h
index 5e2fad1..fb5f097 100644
--- a/liblog.h
+++ b/liblog.h
@@ -743,23 +743,23 @@ liblog_use_stderr_for_range(struct liblog_context *ctx, const char *prefixfmt, i
* may be 0 or the OR of any of the following values:
* - LIBLOG_XLOG_CORK:
* Mark the message as incomplete an deferred
- * printing until LIBLOG_XLOG_UNCORK is used.
+ * printing until LIBLOG_XLOG_UNCORK is used
* - LIBLOG_XLOG_UNCORK:
* Output message printed since the first
* LIBLOG_XLOG_CORK (after the last
* LIBLOG_XLOG_UNCORK if any) as one complete
- * message.
+ * message
* - LIBLOG_XLOG_BACKTRACE:
* Output a backtrace even if the it is not
* configured that backtraces should be printed
- * for the selected log level.
+ * for the selected log level
* - LIBLOG_XLOG_NO_BACKTRACE:
* Do not output a backtrace even if the it is
* configured that backtraces should be printed
- * for the selected log level.
+ * for the selected log level
* - LIBLOG_XLOG_NO_TEXT:
* Do not output any new text (apport from potential
- * backtrace); allowing `fmt` to be `NULL`.
+ * backtrace); allowing `fmt` to be `NULL`
* However, LIBLOG_XLOG_CORK and LIBLOG_XLOG_UNCORK
* cannot be combined, nor can LIBLOG_XLOG_BACKTRACE
* and LIBLOG_XLOG_NO_BACKTRACE be combined