Skip to content

Commit

Permalink
update from MirBSD CVS to get rid of uint8_t
Browse files Browse the repository at this point in the history
  • Loading branch information
mirabilos committed Apr 2, 2024
1 parent 890ef48 commit 45ffe23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .extra/printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#define vstrchr strchr
#endif

__RCSID("$MirOS: src/usr.bin/printf/printf.c,v 1.28 2023/03/14 10:43:28 tg Exp $");
__RCSID("$MirOS: src/usr.bin/printf/printf.c,v 1.29 2024/04/02 09:52:11 tg Exp $");

static int print_escape_str(const char *);
static int print_escape(const char *);
Expand Down Expand Up @@ -120,7 +120,7 @@ c_printf(const char **wp)
int rv;
const char *old_kshname;
char *fmt;
uint8_t old_utfmode;
unsigned char old_utfmode;

old_kshname = kshname;
kshname = wp[0];
Expand Down

0 comments on commit 45ffe23

Please sign in to comment.