X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Documentation%2Flaptop-mode.txt;h=5696e879449bca5c7353804d5fca069cd9926f46;hb=92445eaaadc1f03f5a177ecc957bda76bf2ba8d5;hp=b18e216759060ef792f3b62f4e0865f86dd60b06;hpb=cf41f8ac386e8d62122e7e394b4c6b3e3ab30ede;p=linux-2.6 diff --git a/Documentation/laptop-mode.txt b/Documentation/laptop-mode.txt index b18e216759..5696e87944 100644 --- a/Documentation/laptop-mode.txt +++ b/Documentation/laptop-mode.txt @@ -919,11 +919,11 @@ int main(int argc, char **argv) int settle_time = 60; /* Parse the simple command-line */ - if (ac == 2) - disk = av[1]; - else if (ac == 4) { - settle_time = atoi(av[2]); - disk = av[3]; + if (argc == 2) + disk = argv[1]; + else if (argc == 4) { + settle_time = atoi(argv[2]); + disk = argv[3]; } else usage();