summaryrefslogtreecommitdiff
path: root/udev/test-udev.c
diff options
context:
space:
mode:
authorAlan Jenkins <alan-jenkins@tuffmail.co.uk>2008-09-02 23:19:36 +0200
committerKay Sievers <kay.sievers@vrfy.org>2008-09-02 23:19:36 +0200
commit593453115b777368252ca4231537ad2a9e6d8ffb (patch)
tree305fb4d30b29ac98e01e7cb268646b0a7e2480e6 /udev/test-udev.c
parent44aff4cd6d74d230e4a97f8d59f780472b7cad6e (diff)
remove deprecated envp[] in main()
envp is not standardized, and may become invalid when environment variables are modified. Since udev never actually uses it, we can simply remove it. Should anyone miss it in future, they can use the standardized environ variable - like udev_rules.c does already.
Diffstat (limited to 'udev/test-udev.c')
-rw-r--r--udev/test-udev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/test-udev.c b/udev/test-udev.c
index 4d5881deae..07628f74fd 100644
--- a/udev/test-udev.c
+++ b/udev/test-udev.c
@@ -60,7 +60,7 @@ static void asmlinkage sig_handler(int signum)
}
}
-int main(int argc, char *argv[], char *envp[])
+int main(int argc, char *argv[])
{
struct sysfs_device *dev;
struct udevice *udev;