silly switch style fix

This commit is contained in:
Denis Vlasenko
2006-09-27 19:51:06 +00:00
parent 94d5d82bd8
commit c16bd212e3
8 changed files with 10 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ void data_extract_all(archive_handle_t *archive_handle)
}
} else {
/* Create the filesystem entry */
switch(file_header->mode & S_IFMT) {
switch (file_header->mode & S_IFMT) {
case S_IFREG: {
/* Regular file */
dst_fd = xopen3(file_header->name, O_WRONLY | O_CREAT | O_EXCL,