Fix extra whitespace added by accident.

This commit is contained in:
uwe 2020-06-01 13:30:52 +00:00
parent 06d492d198
commit e03c12d8dc

View File

@ -1,4 +1,4 @@
/* $NetBSD: node.c,v 1.28 2020/05/27 03:25:13 uwe Exp $ */ /* $NetBSD: node.c,v 1.29 2020/06/01 13:30:52 uwe Exp $ */
/* /*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved. * Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@ -27,7 +27,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
__RCSID("$NetBSD: node.c,v 1.28 2020/05/27 03:25:13 uwe Exp $"); __RCSID("$NetBSD: node.c,v 1.29 2020/06/01 13:30:52 uwe Exp $");
#endif /* !lint */ #endif /* !lint */
#include <assert.h> #include <assert.h>
@ -595,7 +595,7 @@ puffs9p_node_rename(struct puffs_usermount *pu,
if (targ) { if (targ) {
struct puffs_node *pn_targ = targ; struct puffs_node *pn_targ = targ;
rv = noderemove(pu, pn_targ); rv = noderemove(pu, pn_targ);
if (rv) if (rv)
goto out; goto out;
} }