Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25521
b: refs/heads/master
c: 8c37bea
h: refs/heads/master
i:
  25519: 7250b6b
v: v3
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Apr 11, 2006
1 parent 3721bfb commit e34d3f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 56b146d36db933844011d5026c6f55593037c7b8
refs/heads/master: 8c37bea1a0506f45111c64bac4325173e066b22d
10 changes: 5 additions & 5 deletions trunk/Documentation/laptop-mode.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit e34d3f1

Please sign in to comment.