summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2018-05-13 07:17:00 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2018-05-13 07:17:00 (GMT)
commit49a9e593112024abc7aa2ae142e50b1d37b39b43 (patch)
tree8b631d3bfb928a6b1a38aa820c011e4099483b63 /generic/tclIOUtil.c
parent242d4d7095f98f0b2db0cc1461d78080eedfc224 (diff)
downloadtcl-49a9e593112024abc7aa2ae142e50b1d37b39b43.zip
tcl-49a9e593112024abc7aa2ae142e50b1d37b39b43.tar.gz
tcl-49a9e593112024abc7aa2ae142e50b1d37b39b43.tar.bz2
General code style cleanup.
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index 144bab0..3382825 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -3197,8 +3197,8 @@ TclSkipUnlink(
#ifndef AUFS_SUPER_MAGIC
#define AUFS_SUPER_MAGIC ('a' << 24 | 'u' << 16 | 'f' << 8 | 's')
#endif /* AUFS_SUPER_MAGIC */
- if ((statfs(Tcl_GetString (shlibFile), &fs) == 0) &&
- (fs.f_type == AUFS_SUPER_MAGIC)) {
+ if ((statfs(Tcl_GetString(shlibFile), &fs) == 0)
+ && (fs.f_type == AUFS_SUPER_MAGIC)) {
return 1;
}
}