From: Glenn L McGrath Date: Fri, 8 Nov 2002 08:07:38 +0000 (-0000) Subject: #ifdef, not just #if... grrr X-Git-Tag: 1_00_pre1~469 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=57033411236427677b925bb86ef0613000cb52b0;p=platform%2Fupstream%2Fbusybox.git #ifdef, not just #if... grrr --- diff --git a/archival/libunarchive/seek_by_jump.c b/archival/libunarchive/seek_by_jump.c index efad97f..2823976 100644 --- a/archival/libunarchive/seek_by_jump.c +++ b/archival/libunarchive/seek_by_jump.c @@ -25,7 +25,7 @@ extern void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount) { if (lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1) { -#if CONFIG_FEATURE_UNARCHIVE_TAPE +#ifdef CONFIG_FEATURE_UNARCHIVE_TAPE if (errno == ESPIPE) { seek_by_char(archive_handle, amount); } else