diff options
| author | Teddy Wing | 2021-03-04 19:48:16 +0100 |
|---|---|---|
| committer | Teddy Wing | 2021-03-04 19:48:16 +0100 |
| commit | 794fcee37237f58901ed32664c032ca5e09e668c (patch) | |
| tree | 56d7ffbaf13deba4f0c55d185e52dba5fa07bdd0 | |
| parent | 5f9699734c9e58552a58f2708fed925986158f61 (diff) | |
| download | Re-Good-Catalina-Invert-Colours-794fcee37237f58901ed32664c032ca5e09e668c.tar.bz2 | |
Run forever
Rather than sleeping, keep the program active until it's exited
manually.
| -rw-r--r-- | main.m | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ int main(int argc, const char * argv[]) { gamma ); - sleep(5); + for (;;) {} return 0; } |
