From: AZero13 Date: Wed, 17 Dec 2025 02:48:45 +0000 (-0500) Subject: Use >=, not => X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b39f91e5da4bedec68ef5eb019fbeddf6b5d5c83;p=thirdparty%2Flibarchive.git Use >=, not => --- diff --git a/unzip/bsdunzip.c b/unzip/bsdunzip.c index 1b520e841..14bd418f1 100644 --- a/unzip/bsdunzip.c +++ b/unzip/bsdunzip.c @@ -654,11 +654,11 @@ recheck: #elif HAVE_STRUCT_STAT_ST_MTIME_N sb.st_mtime > mtime.tv_sec || (sb.st_mtime == mtime.tv_sec && - sb.st_mtime_n => mtime.tv_nsec) + sb.st_mtime_n >= mtime.tv_nsec) #elif HAVE_STRUCT_STAT_ST_MTIME_USEC sb.st_mtime > mtime.tv_sec || (sb.st_mtime == mtime.tv_sec && - sb.st_mtime_usec => mtime.tv_nsec / 1000) + sb.st_mtime_usec >= mtime.tv_nsec / 1000) #else sb.st_mtime > mtime.tv_sec #endif