From b2870733c87fcc6c870fb69b8b7bcc563944f9d1 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sat, 11 Mar 2017 22:43:23 -0500 Subject: [PATCH] remove uint8_t --- src/to_pro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/to_pro.c b/src/to_pro.c index d52645c..88ff8f1 100755 --- a/src/to_pro.c +++ b/src/to_pro.c @@ -43,7 +43,7 @@ int g_crlf = 0; void make_legal_prodos_name(char *new_name, char *old_name); -static int hex(uint8_t c) +static int hex(byte c) { if (c >= '0' && c <= '9') return c - '0'; if (c >= 'a' && c <= 'f') return c + 10 - 'a';