[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
[reactos.git] / dll / cpl / timedate / monthcal.c
index 4f23396..33be29e 100644 (file)
@@ -83,10 +83,10 @@ MonthCalNotifyControlParent(IN PMONTHCALWND infoPtr,
  */
 static WORD LeapYear(IN WORD Year)
 {
-       return 
+       return
 #ifdef WITH_1752
                (Year <= 1752) ? !(Year % 4) :
-#endif        
+#endif
                !(Year % 4) && ((Year % 100) || !(Year % 400));
 }