diff options
author | Mark Whitley <markw@lineo.com> | 1999-12-17 00:01:46 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 1999-12-17 00:01:46 +0000 |
commit | c144e330c0342a8ed0c9d917fd5a064317652c8a (patch) | |
tree | 2df323ef9cf138b357f2201bebea6c47b697139c /rmmod.c | |
parent | 2129b146db0bb78507c7394d7555715dfb29ee0c (diff) |
Fixed correctness of comment in rmmod.c - MKW
Diffstat (limited to 'rmmod.c')
-rw-r--r-- | rmmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ extern int rmmod_main(int argc, char **argv) while (*(++(*argv))) { switch (**argv) { case 'a': - /* Unload _all_ modules via NULL delete_module() call */ + /* Unload _all_ unused modules via NULL delete_module() call */ if (delete_module(NULL)) { perror("rmmod"); exit( FALSE); |