OSDN Git Service

* src/header.c: fixed a comment.
authorarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 25 Aug 2002 20:24:50 +0000 (20:24 +0000)
committerarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 25 Aug 2002 20:24:50 +0000 (20:24 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/lha/lha/trunk@532 6a8cc165-1e22-0410-a132-eb4e3f353aba

src/header.c

index eddf111..9587dbb 100644 (file)
@@ -526,7 +526,7 @@ wintime_to_unix_stamp()
         t = (t << 8) + wintime[i]; /* 24bit + 8bit. t must be 32bit variable */
         q <<= 8;                   /* q must be 32bit (time_t) */
         q += t / x;
-        t %= x;     /* 16bit */
+        t %= x;     /* 24bit */
     }
     return q;
 #endif