mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-07-10 13:29:52 -04:00
fix regression in cae4336
Change-Id: I026fe919401bbe13cef161a6eb6ce44e5fbbbb6f
This commit is contained in:
parent
cae433608f
commit
8abc859c32
1 changed files with 4 additions and 2 deletions
|
|
@ -1432,8 +1432,9 @@ const char *format_time_auto(char *buffer, int buf_len, long value,
|
|||
|
||||
#if 0 /* unused */
|
||||
left_offset = -(offsets[max_idx]);
|
||||
left_offset += strlcpy(buffer, sign, buf_len);
|
||||
left_offset +=
|
||||
#endif
|
||||
strlcpy(buffer, sign, buf_len);
|
||||
|
||||
/* trim leading zero on the max_idx */
|
||||
if ((unit_idx & UNIT_TRIM_ZERO) == UNIT_TRIM_ZERO &&
|
||||
|
|
@ -1479,8 +1480,9 @@ const char *format_time_auto(char *buffer, int buf_len, long value,
|
|||
{
|
||||
strmemccpy(buffer, unit_strings_core[units[max_idx]], buf_len);
|
||||
#if 0 /* unused */
|
||||
left_offset += strlcat(buffer, " ", buf_len);
|
||||
left_offset +=
|
||||
#endif
|
||||
strlcat(buffer, " ", buf_len);
|
||||
strlcat(buffer, &timebuf[offsets[base_idx]], buf_len);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue