Module Name: src Committed By: christos Date: Mon Apr 29 19:08:11 UTC 2019
Modified Files: src/sys/net: dl_print.c Log Message: match definition of hexdigits[] to the declaration in <sys/systm.h> To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/net/dl_print.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/dl_print.c diff -u src/sys/net/dl_print.c:1.4 src/sys/net/dl_print.c:1.5 --- src/sys/net/dl_print.c:1.4 Mon Apr 29 12:05:46 2019 +++ src/sys/net/dl_print.c Mon Apr 29 15:08:11 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: dl_print.c,v 1.4 2019/04/29 16:05:46 roy Exp $ */ +/* $NetBSD: dl_print.c,v 1.5 2019/04/29 19:08:11 christos Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -29,12 +29,12 @@ #include <sys/types.h> #ifdef _KERNEL -__KERNEL_RCSID(0, "$NetBSD: dl_print.c,v 1.4 2019/04/29 16:05:46 roy Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dl_print.c,v 1.5 2019/04/29 19:08:11 christos Exp $"); #include <sys/systm.h> #else -__RCSID("$NetBSD: dl_print.c,v 1.4 2019/04/29 16:05:46 roy Exp $"); +__RCSID("$NetBSD: dl_print.c,v 1.5 2019/04/29 19:08:11 christos Exp $"); #include <stdio.h> -static const uint8_t hexdigits[] = "0123456789abcdef"; +static const char hexdigits[] = "0123456789abcdef"; #endif #include <net/if_dl.h>