Loop your X cursor around the screen 👉😎👉
git clone https://github.com/m-col/xoop
Files | Refs | Readme | License

Commit bd790bd4a6cf2c93accce1b1152d80df935cf4fa
Parent: 891bf69f7de3527fd005568937a12c9d3a9f00a7
Author: Laurent Seiler <m2k.networx@gmail.com>
Date: 2024-05-04 12:06:52 +0200
Committer: Laurent Seiler <m2k.networx@gmail.com>
Committed: 2024-05-04 12:07:14 +0200

xoop.c: corrected usage of fprintf (also fixes compiler warning)

xoop.c Modified

@@ -50,7 +50,7 @@
 
 void exit_angrily(char msg[])
 {
-    fprintf(stderr, msg);
+    fprintf(stderr, "%s", msg);
     xcb_disconnect(conn);
     exit(EXIT_FAILURE);
 }