From: Eric Biggers Date: Tue, 27 May 2014 02:25:29 +0000 (-0500) Subject: resource.c: Fix two comments X-Git-Tag: v1.7.0~80 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=c5a50ca10987e37b7e880f71f342fd78270f27a0;ds=sidebyside resource.c: Fix two comments --- diff --git a/src/resource.c b/src/resource.c index d2a4c309..f7684b10 100644 --- a/src/resource.c +++ b/src/resource.c @@ -37,7 +37,7 @@ #include "wimlib/wim.h" #ifdef __WIN32__ -/* for read_win32_file_prefix(), read_win32_encrypted_file_prefix() */ +/* for read_winnt_file_prefix(), read_win32_encrypted_file_prefix() */ # include "wimlib/win32.h" #endif @@ -171,7 +171,7 @@ read_compressed_wim_resource(const struct wim_resource_spec * const rspec, /* Determine if we're reading a pipable resource from a pipe or not. */ const bool is_pipe_read = (rspec->is_pipable && !filedes_is_seekable(in_fd)); - /* Determine if the chunk table is in an altenate format. */ + /* Determine if the chunk table is in an alternate format. */ const bool alt_chunk_table = (rspec->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) && !is_pipe_read;