checksrc: enhance the ASTERISKSPACE and update code accordingly

Fine: "struct hello *world"

Not fine: "struct hello* world" (and variations)

Closes #5386
This commit is contained in:
Daniel Stenberg 2020-05-13 12:56:53 +02:00
parent f3f5d82e28
commit 66b0775763
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
23 changed files with 56 additions and 56 deletions

View file

@ -73,7 +73,7 @@ char *decc$getenv(const char *__name);
# endif
#endif
struct passwd * decc_getpwuid(uid_t uid);
struct passwd *decc_getpwuid(uid_t uid);
#ifdef __DECC
# if __INITIAL_POINTER_SIZE == 32
@ -138,9 +138,9 @@ static char *vms_getenv(const char *envvar)
static struct passwd vms_passwd_cache;
static struct passwd * vms_getpwuid(uid_t uid)
static struct passwd *vms_getpwuid(uid_t uid)
{
struct passwd * my_passwd;
struct passwd *my_passwd;
/* Hack needed to support 64 bit builds, decc_getpwnam is 32 bit only */
#ifdef __DECC