From 68229837ff1e690190d51b74b281cfe999220e6d Mon Sep 17 00:00:00 2001 From: "\"Robert P. J. Day\"" Date: Sat, 1 Jul 2006 13:08:46 +0000 Subject: Remove all usage of the "register" storage class specifier. --- networking/udhcp/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'networking/udhcp') diff --git a/networking/udhcp/packet.c b/networking/udhcp/packet.c index 8cf9fe283..1bdade7e5 100644 --- a/networking/udhcp/packet.c +++ b/networking/udhcp/packet.c @@ -87,7 +87,7 @@ uint16_t udhcp_checksum(void *addr, int count) /* Compute Internet Checksum for "count" bytes * beginning at location "addr". */ - register int32_t sum = 0; + int32_t sum = 0; uint16_t *source = (uint16_t *) addr; while (count > 1) { -- cgit v1.2.3