diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-10-26 01:38:03 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-10-26 01:38:03 +0000 |
commit | 719a6a9e0092a23f33437a09a8ea37f2dd76d92a (patch) | |
tree | d01bb59d49c64d5df7d903756ea183264a374481 /usr.sbin/amd | |
parent | 001423f709c29b0467fb9eecfe31752b197c7776 (diff) |
Remove trailing newlines from a couple log messages
Diffstat (limited to 'usr.sbin/amd')
-rw-r--r-- | usr.sbin/amd/amd/host_ops.c | 6 | ||||
-rw-r--r-- | usr.sbin/amd/amd/map.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/amd/amd/host_ops.c b/usr.sbin/amd/amd/host_ops.c index 571e714a81f..050154e8c7a 100644 --- a/usr.sbin/amd/amd/host_ops.c +++ b/usr.sbin/amd/amd/host_ops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: host_ops.c,v 1.16 2014/10/26 01:16:48 guenther Exp $ */ +/* $OpenBSD: host_ops.c,v 1.17 2014/10/26 01:38:02 guenther Exp $ */ /* * Copyright (c) 1990 Jan-Simon Pendry @@ -130,7 +130,7 @@ do_mount(fhstatus *fhp, char *dir, char *fs_name, char *opts, mntfs *mf) struct stat stb; #ifdef DEBUG - dlog("host: mounting fs %s on %s\n", fs_name, dir); + dlog("host: mounting fs %s on %s", fs_name, dir); #endif /* DEBUG */ #ifdef HOST_MKDIRS (void) mkdirs(dir, 0555); @@ -288,7 +288,7 @@ host_fmount(mntfs *mf) n_export++; } #ifdef DEBUG - /*dlog("%d exports returned\n", n_export);*/ + /*dlog("%d exports returned", n_export);*/ #endif /* DEBUG */ /* diff --git a/usr.sbin/amd/amd/map.c b/usr.sbin/amd/amd/map.c index d3c59e62ddd..5df7c06a2db 100644 --- a/usr.sbin/amd/amd/map.c +++ b/usr.sbin/amd/amd/map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: map.c,v 1.11 2014/10/26 01:16:48 guenther Exp $ */ +/* $OpenBSD: map.c,v 1.12 2014/10/26 01:38:02 guenther Exp $ */ /*- * Copyright (c) 1990 Jan-Simon Pendry @@ -162,7 +162,7 @@ am_node *exported_ap_alloc(void) exported_ap_realloc_map(exported_ap_size - NEXP_AP); #ifdef DEBUG - /*dlog("alloc_exp: last_used_map = %d, first_free_map = %d\n", + /*dlog("alloc_exp: last_used_map = %d, first_free_map = %d", last_used_map, first_free_map);*/ #endif /* DEBUG */ @@ -197,7 +197,7 @@ exported_ap_free(am_node *mp) first_free_map = mp->am_mapno; #ifdef DEBUG - /*dlog("free_exp: last_used_map = %d, first_free_map = %d\n", + /*dlog("free_exp: last_used_map = %d, first_free_map = %d", last_used_map, first_free_map);*/ #endif /* DEBUG */ |