Skip to content

Commit

Permalink
arch/m68knommu/kernel/time.c: Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Joe Perches authored and Greg Ungerer committed Sep 15, 2009
1 parent 732c611 commit c573b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68knommu/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static unsigned long read_rtc_mmss(void)
if ((year += 1900) < 1970)
year += 100;

return mktime(year, mon, day, hour, min, sec);;
return mktime(year, mon, day, hour, min, sec);
}

unsigned long read_persistent_clock(void)
Expand Down

0 comments on commit c573b29

Please sign in to comment.