From 6c6d11ab33c36762767bc2be43e03718aac6c87b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20van=20Dorst?= Date: Sat, 18 Apr 2026 21:56:29 +0200 Subject: [PATCH] dhcp: de-__gptrget()-call in dhcp_print_ip() --- dhcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dhcp.c b/dhcp.c index 9febcca..67c0e50 100644 --- a/dhcp.c +++ b/dhcp.c @@ -82,7 +82,7 @@ struct dhcp_pkt { __xdata uint32_t long_value; -void dhcp_print_ip(uint8_t *a) +void dhcp_print_ip(__xdata uint8_t *a) { itoa(a[0]); write_char('.'); itoa(a[1]); write_char('.');