maint: omit space between "*" and "p"

This commit is contained in:
Paul Eggert
2024-08-01 07:17:32 -07:00
parent 39d315e8ea
commit aae99e863d
3 changed files with 7 additions and 7 deletions

View File

@@ -513,8 +513,8 @@ union block *start_header (struct tar_stat_info *st);
void finish_header (struct tar_stat_info *st, union block *header,
off_t block_ordinal);
void simple_finish_header (union block *header);
union block * write_extended (bool global, struct tar_stat_info *st,
union block *old_header);
union block *write_extended (bool global, struct tar_stat_info *st,
union block *old_header);
union block *start_private_header (const char *name, size_t size, time_t t);
void write_eot (void);
void check_links (void);

View File

@@ -250,7 +250,7 @@ static int include_anchored = EXCLUDE_ANCHORED;
| matching_flags \
| recursion_option)
static char const * const vcs_file_table[] = {
static char const *const vcs_file_table[] = {
/* CVS: */
"CVS",
".cvsignore",
@@ -284,7 +284,7 @@ static char const * const vcs_file_table[] = {
NULL
};
static char const * const backup_file_table[] = {
static char const *const backup_file_table[] = {
".#*",
"*~",
"#*#",
@@ -292,7 +292,7 @@ static char const * const backup_file_table[] = {
};
static void
add_exclude_array (char const * const * fv, int opts)
add_exclude_array (char const *const *fv, int opts)
{
int i;

View File

@@ -352,7 +352,7 @@ xattrs_acls_cleanup (char *val, size_t *plen)
static void
acls_get_text (int parentfd, const char *file_name, acl_type_t type,
char **ret_ptr, size_t * ret_len)
char **ret_ptr, size_t *ret_len)
{
char *val = NULL;
acl_t acl;
@@ -403,7 +403,7 @@ xattrs__acls_get_a (int parentfd, const char *file_name,
/* "system.posix_acl_default" */
static void
xattrs__acls_get_d (int parentfd, char const *file_name,
char **ret_ptr, size_t * ret_len)
char **ret_ptr, size_t *ret_len)
{
acls_get_text (parentfd, file_name, ACL_TYPE_DEFAULT, ret_ptr, ret_len);
}