summaryrefslogtreecommitdiffstats
path: root/src/shared/json.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-01-04 13:24:40 +0100
committerLennart Poettering <lennart@poettering.net>2019-01-07 17:50:39 +0100
commit6af022fedd24d2605157eb683428082ac3d823c8 (patch)
tree08f211db86c719de27fbbd5bdaeb5325bf30224f /src/shared/json.h
parentjson: teach json_log() the new SYNTHETIC_ERRNO() logic (diff)
downloadsystemd-6af022fedd24d2605157eb683428082ac3d823c8.tar.xz
systemd-6af022fedd24d2605157eb683428082ac3d823c8.zip
json: fix typo
Diffstat (limited to 'src/shared/json.h')
-rw-r--r--src/shared/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/json.h b/src/shared/json.h
index 724fb2e53f..f8e035cda1 100644
--- a/src/shared/json.h
+++ b/src/shared/json.h
@@ -153,7 +153,7 @@ typedef enum JsonFormatFlags {
JSON_FORMAT_NEWLINE = 1 << 0, /* suffix with newline */
JSON_FORMAT_PRETTY = 1 << 1, /* add internal whitespace to appeal to human readers */
JSON_FORMAT_COLOR = 1 << 2, /* insert ANSI color sequences */
- JSON_FORMAT_COLOR_AUTO = 1 << 3, /* insetr ANSI color sequences if colors_enabled() says so */
+ JSON_FORMAT_COLOR_AUTO = 1 << 3, /* insert ANSI color sequences if colors_enabled() says so */
JSON_FORMAT_SOURCE = 1 << 4, /* prefix with source filename/line/column */
JSON_FORMAT_SSE = 1 << 5, /* prefix/suffix with W3C server-sent events */
JSON_FORMAT_SEQ = 1 << 6, /* prefix/suffix with RFC 7464 application/json-seq */