From 2a53b50a2c852cd3cab696c5e7fead1c58cb8bda Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sat, 13 Jan 2007 03:30:14 +0000 Subject: [PATCH] Correct the int->text conversion. MFC after: 3 days --- lib/libarchive/archive_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libarchive/archive_string.c b/lib/libarchive/archive_string.c index 5d6234fd271..b42bb22473d 100644 --- a/lib/libarchive/archive_string.c +++ b/lib/libarchive/archive_string.c @@ -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, '-');