diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-08-24 21:32:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-08-24 21:32:20 +0000 |
commit | 5dba8ae938b13402e9d3ffe78eb1c7c689994c6e (patch) | |
tree | db50558186a10141736bd0cceb80594bcaed7582 /sys | |
parent | d19d8539ef326165f6592a33dc18a8b23062b576 (diff) |
missing newline in a printf
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arm/xscale/i80321_clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/xscale/i80321_clock.c b/sys/arch/arm/xscale/i80321_clock.c index 3c501bd3a52..05ec5e90f16 100644 --- a/sys/arch/arm/xscale/i80321_clock.c +++ b/sys/arch/arm/xscale/i80321_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i80321_clock.c,v 1.4 2006/07/20 02:34:04 drahn Exp $ */ +/* $OpenBSD: i80321_clock.c,v 1.5 2006/08/24 21:32:19 deraadt Exp $ */ /* * Copyright (c) 2006 Dale Rahn <drahn@openbsd.org> @@ -411,7 +411,7 @@ inittodr(time_t base) int badbase; if (base < (MINYEAR - 1970) * SECYR) { - printf("WARNING: preposterous time in file system"); + printf("WARNING: preposterous time in file system\n"); /* read the system clock anyway */ base = (MINYEAR - 1970) * SECYR; badbase = 1; |