Browse Source

arch/m68knommu/kernel/time.c: Remove unnecessary semicolons

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Joe Perches 16 years ago
parent
commit
c573b29baf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/m68knommu/kernel/time.c

+ 1 - 1
arch/m68knommu/kernel/time.c

@@ -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)