%#X uses 0X not 0x.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 5 Sep 2004 16:29:37 +0000 (16:29 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 5 Sep 2004 16:29:37 +0000 (16:29 +0000)
src/lib/lib.c

index f353d624f35010a4bbe3e075809468169ee621b2..8fe516194ff0b89cef848b4eb0b551f4be005f2d 100644 (file)
@@ -470,7 +470,7 @@ struct integer_base
 static const struct integer_base base_d = {10, "0123456789", "", 3};
 static const struct integer_base base_o = {8, "01234567", "0", 3};
 static const struct integer_base base_x = {16, "0123456789abcdef", "0x", 4};
-static const struct integer_base base_X = {16, "0123456789ABCDEF", "0x", 4};
+static const struct integer_base base_X = {16, "0123456789ABCDEF", "0X", 4};
 
 static const char *parse_conversion (const char *format,
                                      struct printf_conversion *,