]> diplodocus.org Git - nmh/blobdiff - sbr/dtime.c
Various IMAP protocol improvements
[nmh] / sbr / dtime.c
index b5039ed6d96c0c6987ffb8c03bb6578cd8ab1bde..26b451daba8b18b6ce0a1beb22cf09a815ffdca2 100644 (file)
@@ -285,7 +285,8 @@ dasctime (struct tws *tw, int flags)
  * return the string representation of the numeric offset.
  */
 
-char *dtimezone(int offset, int flags)
+char *
+dtimezone(int offset, int flags)
 {
     static char buffer[sizeof "+3579139459"]; /* 2,147,483,648 / 60 = 35,791,394 */
     bool pos;
@@ -355,7 +356,7 @@ dmktime (struct tws *tw)
     if (tw->tw_flags & TW_DST)
        result -= 60 * 60; /* One hour. */
 
-    return (tw->tw_clock = result);
+    return tw->tw_clock = result;
 }