1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35:10 +00:00

tztime: fix argument parsing bug, clarify docs

This commit is contained in:
Phil Sutter 2009-10-04 03:59:47 +02:00
parent 1e893ec6e3
commit ea92e63a44
2 changed files with 3 additions and 3 deletions

View File

@ -3126,7 +3126,7 @@
<command>
<option>tztime</option>
</command>
<option>(timezone) (format)</option>
<option>(timezone (format))</option>
</term>
<listitem>Local time for specified timezone, see man
strftime to get more information about format. The timezone

View File

@ -46,9 +46,9 @@ void scan_tztime(struct text_object *obj, const char *arg)
switch (nArgs) {
case 2:
tz = buf1;
case 1:
fmt = buf2;
case 1:
tz = buf1;
}
}