From 135577da31fc094b0321ba8c9f984cc2193ae6bd Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Thu, 2 Dec 2010 22:20:41 -0600 Subject: [PATCH] Fix K&R-style function declaration. --- vms/vms.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vms/vms.c b/vms/vms.c index ab71db2..3aa93e2 100644 --- a/vms/vms.c +++ b/vms/vms.c @@ -12446,8 +12446,7 @@ static mydev_t encode_dev (pTHX_ const char *dev) #endif static int -is_null_device(name) - const char *name; +is_null_device(const char *name) { if (decc_bug_devnull != 0) { if (strncmp("/dev/null", name, 9) == 0) -- 2.7.4