From 3f6a83eb9c3de5db795b3e0272cfbb5a88cd6e5d Mon Sep 17 00:00:00 2001 From: dkf Date: Wed, 6 Oct 2004 13:09:43 +0000 Subject: Add braces round if body... --- generic/tclFCmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c index 1c16ef0..3d0bb95 100644 --- a/generic/tclFCmd.c +++ b/generic/tclFCmd.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclFCmd.c,v 1.26 2004/04/06 22:25:51 dgp Exp $ + * RCS: @(#) $Id: tclFCmd.c,v 1.27 2004/10/06 13:09:43 dkf Exp $ */ #include "tclInt.h" @@ -609,7 +609,9 @@ CopyRenameOneFile(interp, source, target, copyFlag, force) */ if (Tcl_FSGetPathType(path) == TCL_PATH_RELATIVE) { Tcl_Obj *abs = Tcl_FSJoinToPath(actualSource, 1, &path); - if (abs == NULL) break; + if (abs == NULL) { + break; + } Tcl_IncrRefCount(abs); Tcl_DecrRefCount(path); path = abs; -- cgit v0.12