summaryrefslogtreecommitdiff
path: root/lib/setup-vms.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-13 12:56:53 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-14 00:02:05 +0200
commit66b077576313eda129bce9f58fdc894d857cb121 (patch)
treece4989ca7204ca1fcdcc47dcc50c72d8a8898a6c /lib/setup-vms.h
parentf3f5d82e2854991cd12ad5dcf022e8abbcea7038 (diff)
downloadcurl-66b077576313eda129bce9f58fdc894d857cb121.tar.gz
checksrc: enhance the ASTERISKSPACE and update code accordingly
Fine: "struct hello *world" Not fine: "struct hello* world" (and variations) Closes #5386
Diffstat (limited to 'lib/setup-vms.h')
-rw-r--r--lib/setup-vms.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/setup-vms.h b/lib/setup-vms.h
index 6c454aee6..482e69e46 100644
--- a/lib/setup-vms.h
+++ b/lib/setup-vms.h
@@ -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