Newline is \n, not /n.

This commit is contained in:
mbalmer 2011-09-07 07:43:05 +00:00
parent fccabba939
commit 5ff9b946b6
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: gpioow.c,v 1.13 2011/08/31 12:23:32 mbalmer Exp $ */
/* $NetBSD: gpioow.c,v 1.14 2011/09/07 07:43:05 mbalmer Exp $ */
/* $OpenBSD: gpioow.c,v 1.1 2006/03/04 16:27:03 grange Exp $ */
/*
@ -18,7 +18,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: gpioow.c,v 1.13 2011/08/31 12:23:32 mbalmer Exp $");
__KERNEL_RCSID(0, "$NetBSD: gpioow.c,v 1.14 2011/09/07 07:43:05 mbalmer Exp $");
/*
* 1-Wire bus bit-banging through GPIO pin.
@ -87,7 +87,7 @@ gpioow_match(device_t parent, cfdata_t cf, void *aux)
/* Check that we have enough pins */
if (gpio_npins(ga->ga_mask) != GPIOOW_NPINS) {
aprint_debug("%s: invalid pin mask 0x%02x/n", cf->cf_name,
aprint_debug("%s: invalid pin mask 0x%02x\n", cf->cf_name,
ga->ga_mask);
return 0;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_engine.c,v 1.46 2011/05/11 18:13:12 mrg Exp $ */
/* $NetBSD: rf_engine.c,v 1.47 2011/09/07 07:46:45 mbalmer Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@ -55,7 +55,7 @@
****************************************************************************/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_engine.c,v 1.46 2011/05/11 18:13:12 mrg Exp $");
__KERNEL_RCSID(0, "$NetBSD: rf_engine.c,v 1.47 2011/09/07 07:46:45 mbalmer Exp $");
#include <sys/errno.h>
@ -664,7 +664,7 @@ ProcessNode(RF_DagNode_t *node, int context)
break;
case rf_panic:
/* an undo node failed!!! */
printf("UNDO of a node failed!!!/n");
printf("UNDO of a node failed!!!\n");
break;
default:
printf("node finished execution with an illegal status!!!\n");