summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-12-13 17:33:20 +0100
committerLennart Poettering <lennart@poettering.net>2013-12-13 17:33:20 +0100
commit49cf4ece205bf23c39c30a633a20e22260fc1706 (patch)
tree0f178d6656653c93ce7c4294580d11fc423c45d6 /src
parent58f299eef635d538474cda62ad72dc024c10cdb6 (diff)
journal: downgrade comments about sd_journal_print_with_location()
Effectviely these calls are ABI anyway, so downgrade the comments a bit, since it might actually be useful for language bindings to make use of them.
Diffstat (limited to 'src')
-rw-r--r--src/systemd/sd-journal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/sd-journal.h b/src/systemd/sd-journal.h
index ae9b91a6f9..cdd7c14a57 100644
--- a/src/systemd/sd-journal.h
+++ b/src/systemd/sd-journal.h
@@ -42,7 +42,7 @@ int sd_journal_send(const char *format, ...) _sd_printf_(1, 0) _sd_sentinel_;
int sd_journal_sendv(const struct iovec *iov, int n);
int sd_journal_perror(const char *message);
-/* Used by the macros below. Don't call this directly. */
+/* Used by the macros below. You probably don't want to call this directly. */
int sd_journal_print_with_location(int priority, const char *file, const char *line, const char *func, const char *format, ...) _sd_printf_(5, 6);
int sd_journal_printv_with_location(int priority, const char *file, const char *line, const char *func, const char *format, va_list ap) _sd_printf_(5, 0);
int sd_journal_send_with_location(const char *file, const char *line, const char *func, const char *format, ...) _sd_printf_(4, 0) _sd_sentinel_;