From b71c668c577f7780362f7ea632895c11e3760d66 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 21 Jul 2007 15:08:09 +0000 Subject: style fix (stray space before ';') --- archival/libunarchive/get_header_tar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archival/libunarchive/get_header_tar.c') diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index 1a7a687cf..e8ef92994 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c @@ -122,13 +122,13 @@ char get_header_tar(archive_handle_t *archive_handle) sum_s = ' ' * sizeof(tar.chksum); #endif sum_u = ' ' * sizeof(tar.chksum); - for (i = 0; i < 148 ; i++) { + for (i = 0; i < 148; i++) { sum_u += ((unsigned char*)&tar)[i]; #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY sum_s += ((signed char*)&tar)[i]; #endif } - for (i = 156; i < 512 ; i++) { + for (i = 156; i < 512; i++) { sum_u += ((unsigned char*)&tar)[i]; #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY sum_s += ((signed char*)&tar)[i]; -- cgit v1.2.3