X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;f=Documentation%2Flaptop-mode.txt;h=5696e879449bca5c7353804d5fca069cd9926f46;hb=f0ee3404cce2c45f8b95b341dd6311cd92e5cee0;hp=b18e216759060ef792f3b62f4e0865f86dd60b06;hpb=3f02d072d46bb409e8ca3cf16c0511f5c21adaf6;p=cascardo%2Flinux.git diff --git a/Documentation/laptop-mode.txt b/Documentation/laptop-mode.txt index b18e21675906..5696e879449b 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();