Skip to content

Commit

Permalink
Fix build failure without HAVE_UTIMES.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggcueroad committed Nov 11, 2012
1 parent 60180ae commit 5923321
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libarchive/archive_read_disk_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -1901,7 +1901,8 @@ static int
close_and_restore_time(int fd, struct tree *t, struct restore_time *rt)
{
#ifndef HAVE_UTIMES
(void)a; /* UNUSED */
(void)t; /* UNUSED */
(void)rt; /* UNUSED */
return (close(fd));
#else
#if defined(HAVE_FUTIMENS) && !defined(__CYGWIN__)
Expand Down

0 comments on commit 5923321

Please sign in to comment.