summaryrefslogtreecommitdiffstats
path: root/call/dostime.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 02:20:24 +0200
committerRalf Baechle <ralf@linux-mips.org>2015-05-02 18:16:06 +0200
commitafa8313f928dadd74dba812bef6038ba0d144370 (patch)
treedf02d17a3b28acb7e84e91131913ae0ebde16c06 /call/dostime.c
parent8ad248395c0fa0bccff6d0f9c43712018f0645f9 (diff)
Remove parenthesis around arguments of return statements.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'call/dostime.c')
-rw-r--r--call/dostime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/call/dostime.c b/call/dostime.c
index ea266a4..0a73af0 100644
--- a/call/dostime.c
+++ b/call/dostime.c
@@ -78,7 +78,7 @@ int yapp2unix(char *ytime)
time = strtoul(ytime + 4, (char **) NULL, 16);
ytime[4] = 0;
date = strtoul(ytime, (char **) NULL, 16);
- return (date_dos2unix(time, date));
+ return date_dos2unix(time, date);
}