diff options
author | Rob Landley <rob@landley.net> | 2015-01-18 14:06:14 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-01-18 14:06:14 -0600 |
commit | 2c1cf4a02783e2a570ddf7b7ea968c7bed781f91 (patch) | |
tree | bb454a31153a66de680248a6d74177527372e0ec /lib/xwrap.c | |
parent | 468f155ecefec275e6d2299470d35bd912f69a94 (diff) | |
download | toybox-2c1cf4a02783e2a570ddf7b7ea968c7bed781f91.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'lib/xwrap.c')
-rw-r--r-- | lib/xwrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c index de7ae832..bfe1c8e1 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -349,7 +349,7 @@ void xstat(char *path, struct stat *st) // Cannonicalize path, even to file with one or more missing components at end. // if exact, require last path component to exist -char *xabspath(char *path, int exact) +char *xabspath(char *path, int exact) { struct string_list *todo, *done = 0; int try = 9999, dirfd = open("/", 0);; @@ -610,7 +610,7 @@ long xparsetime(char *arg, long units, long *fraction) if (CFG_TOYBOX_FLOAT) d = strtod(arg, &arg); else l = strtoul(arg, &arg, 10); - + // Parse suffix if (*arg) { int ismhd[]={1,60,3600,86400}, i = stridx("smhd", *arg); |