diff --git a/README.md b/README.md index aca402a..c08f8e2 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Nyancat rendered in your terminal. Nyancat is available in the following distributions: - [Arch](https://www.archlinux.org/packages/?q=nyancat) -- [Debian](http://packages.qa.debian.org/n/nyancat.html) +- [Debian](https://tracker.debian.org/pkg/nyancat) - [Fedora](https://src.fedoraproject.org/rpms/nyancat) - [Gentoo](http://packages.gentoo.org/package/games-misc/nyancat) - [Mandriva](http://sophie.zarb.org/rpms/928724d4aea0efdbdeda1c80cb59a7d3) diff --git a/src/nyancat.c b/src/nyancat.c index 537225c..60c23e7 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -188,7 +188,7 @@ void finish() { * In the standalone mode, we want to handle an interrupt signal * (^C) so that we can restore the cursor and clear the terminal. */ -void SIGINT_handler(int sig){ +void SIGINT_handler(int sig) { (void)sig; finish(); } @@ -544,7 +544,7 @@ int main(int argc, char ** argv) { sb_len = 0; memset(sb, 0, sizeof(sb)); break; - case IAC: + case IAC: /* IAC IAC? That's probably not right. */ done = 2; break;