diff options
author | Christian Hesse <mail@eworm.de> | 2014-08-06 13:45:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-08-06 13:45:18 +0200 |
commit | 5d82914c34b3cb86e1d6ef50f6a15470de13cbaf (patch) | |
tree | 1d729c555fe871a3cece6ca85a88f663d99532af | |
parent | 59d1c80511d3c62e8d500e6cc02862032a71ad71 (diff) | |
download | nullshell-5d82914c34b3cb86e1d6ef50f6a15470de13cbaf.tar.gz nullshell-5d82914c34b3cb86e1d6ef50f6a15470de13cbaf.tar.zst |
update comment to match the code
-rw-r--r-- | nullshell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nullshell.c b/nullshell.c index 1f8f35a..0b24ef0 100644 --- a/nullshell.c +++ b/nullshell.c @@ -50,7 +50,7 @@ int main(int argc, char **argv) { printf("Terminal: %s\n", ssh_tty); } - /* print an asterisk every SLEEPTIME seconds */ + /* print an character every SLEEPTIME seconds */ while (1) { sleep(SLEEPTIME); putchar(*string); |