Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/net match definition of hexdigits[] to the declaration i...
details: https://anonhg.NetBSD.org/src/rev/869a49b4dafe
branches: trunk
changeset: 998752:869a49b4dafe
user: christos <christos%NetBSD.org@localhost>
date: Mon Apr 29 19:08:11 2019 +0000
description:
match definition of hexdigits[] to the declaration in <sys/systm.h>
diffstat:
sys/net/dl_print.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (25 lines):
diff -r eb33eed913db -r 869a49b4dafe sys/net/dl_print.c
--- a/sys/net/dl_print.c Mon Apr 29 19:03:17 2019 +0000
+++ b/sys/net/dl_print.c Mon Apr 29 19:08:11 2019 +0000
@@ -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>
Home |
Main Index |
Thread Index |
Old Index