diff options
author | Ingo Bürk <ingo.buerk@tngtech.com> | 2015-03-23 21:42:52 +0100 |
---|---|---|
committer | Ingo Bürk <ingo.buerk@tngtech.com> | 2015-03-23 21:42:52 +0100 |
commit | 0a84bcb74aeef2efc2f5ccc1cfc674242f311cd2 (patch) | |
tree | 38d20a2a364328ed7bebd2b5fbc079deba9d624e /i3status.c | |
parent | 3f9d4c6d897b44be3971af7229bf07e425d0915f (diff) |
Pass the "instance" JSON property key for tztime blocks
fixes #10
Diffstat (limited to 'i3status.c')
-rw-r--r-- | i3status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -627,13 +627,13 @@ int main(int argc, char *argv[]) { CASE_SEC("time") { SEC_OPEN_MAP("time"); - print_time(json_gen, buffer, cfg_getstr(sec, "format"), NULL, tv.tv_sec); + print_time(json_gen, buffer, NULL, cfg_getstr(sec, "format"), NULL, tv.tv_sec); SEC_CLOSE_MAP; } CASE_SEC_TITLE("tztime") { SEC_OPEN_MAP("tztime"); - print_time(json_gen, buffer, cfg_getstr(sec, "format"), cfg_getstr(sec, "timezone"), tv.tv_sec); + print_time(json_gen, buffer, title, cfg_getstr(sec, "format"), cfg_getstr(sec, "timezone"), tv.tv_sec); SEC_CLOSE_MAP; } |