Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 19:49:31 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 19:49:31 +0300
commit079f8afa0a16112cbaf7012c82b38b7358b82141 (patch)
tree0d8cba8e45b1a8b975e0b8c7a8377703ab5547a6 /util-linux
parent10d0d4eec7e3a292917f43f72afae20341d9ba11 (diff)
style cleanup: return(a) -> return a, part 1
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/rdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 645b0b929..12105953d 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -55,7 +55,7 @@ static time_t askremotedate(const char *host)
* Subtract the RFC 868 time to get Linux epoch
*/
- return(ntohl(nett) - RFC_868_BIAS);
+ return ntohl(nett) - RFC_868_BIAS;
}
int rdate_main(int argc, char **argv)