aboutsummaryrefslogtreecommitdiff
path: root/toys/cp.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-03-06 20:48:27 -0600
committerRob Landley <rob@landley.net>2012-03-06 20:48:27 -0600
commit9317c06e2d2081feb37ab36e626707f3a1205576 (patch)
tree879d781341a4018846fa8b3bed1d722a8fa4010a /toys/cp.c
parent688c74534227e3241a83e41b1f14a3f6b700f475 (diff)
downloadtoybox-9317c06e2d2081feb37ab36e626707f3a1205576.tar.gz
Comment and whitespace tweaks.
Diffstat (limited to 'toys/cp.c')
-rw-r--r--toys/cp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/cp.c b/toys/cp.c
index 236c00f7..c3153e0a 100644
--- a/toys/cp.c
+++ b/toys/cp.c
@@ -180,7 +180,7 @@ void cp_main(void)
char *src = toys.optargs[i];
char *dst;
- // Skip src==dest (should check inodes to catch "cp blah ./blah").
+ // Skip src==dest (TODO check inodes to catch "cp blah ./blah").
if (!strcmp(src, TT.destname)) continue;