mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Correct the int->text conversion. <sigh>
MFC after: 3 days
This commit is contained in:
parent
95af1064dc
commit
2a53b50a2c
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ __archive_strappend_char(struct archive_string *as, char c)
|
|||
struct archive_string *
|
||||
__archive_strappend_int(struct archive_string *as, int d, int base)
|
||||
{
|
||||
static const char *digits = "0123457890abcdef";
|
||||
static const char *digits = "0123456789abcdef";
|
||||
|
||||
if (d < 0) {
|
||||
__archive_strappend_char(as, '-');
|
||||
|
|
|
|||
Loading…
Reference in a new issue