Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet Sprinkle some const.



details:   https://anonhg.NetBSD.org/src/rev/3fad82270bfb
branches:  trunk
changeset: 830230:3fad82270bfb
user:      roy <roy%NetBSD.org@localhost>
date:      Thu Mar 01 14:40:57 2018 +0000

description:
Sprinkle some const.

diffstat:

 sys/netinet/if_arp.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 41b858b3cb63 -r 3fad82270bfb sys/netinet/if_arp.c
--- a/sys/netinet/if_arp.c      Thu Mar 01 13:55:25 2018 +0000
+++ b/sys/netinet/if_arp.c      Thu Mar 01 14:40:57 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_arp.c,v 1.267 2018/02/24 07:53:15 ozaki-r Exp $     */
+/*     $NetBSD: if_arp.c,v 1.268 2018/03/01 14:40:57 roy Exp $ */
 
 /*
  * Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.267 2018/02/24 07:53:15 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.268 2018/03/01 14:40:57 roy Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -222,10 +222,10 @@
 #define        LLA_ADDRSTRLEN  (16 * 3)
 
 static char *
-lla_snprintf(char *, uint8_t *, int);
+lla_snprintf(char *, const u_int8_t *, int);
 
 static char *
-lla_snprintf(char *dst, uint8_t *adrp, int len)
+lla_snprintf(char *dst, const u_int8_t *adrp, int len)
 {
        int i;
        char *p;



Home | Main Index | Thread Index | Old Index