aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-03-04 19:48:16 +0100
committerTeddy Wing2021-03-04 19:48:16 +0100
commit794fcee37237f58901ed32664c032ca5e09e668c (patch)
tree56d7ffbaf13deba4f0c55d185e52dba5fa07bdd0
parent5f9699734c9e58552a58f2708fed925986158f61 (diff)
downloadRe-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.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.m b/main.m
index 5cc0ad0..d7726e3 100644
--- a/main.m
+++ b/main.m
@@ -13,7 +13,7 @@ int main(int argc, const char * argv[]) {
gamma
);
- sleep(5);
+ for (;;) {}
return 0;
}