diff options
Diffstat (limited to 'networking/udhcp/packet.c')
-rw-r--r-- | networking/udhcp/packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
87 | /* Compute Internet Checksum for "count" bytes | 87 | /* Compute Internet Checksum for "count" bytes |
88 | * beginning at location "addr". | 88 | * beginning at location "addr". |
89 | */ | 89 | */ |
90 | register int32_t sum = 0; | 90 | int32_t sum = 0; |
91 | uint16_t *source = (uint16_t *) addr; | 91 | uint16_t *source = (uint16_t *) addr; |
92 | 92 | ||
93 | while (count > 1) { | 93 | while (count > 1) { |