aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.c
diff options
context:
space:
mode:
authoroga2008-04-15 20:24:41 +0000
committeroga2008-04-15 20:24:41 +0000
commitb31333397785733587b3bfe3adb27ff2761702b5 (patch)
treeb4fdd1360ef1add5766452793034ef73bec0ebc4 /calmwm.c
parent137723ad08c9062a346b29d72b4b2ce55971c217 (diff)
downloadcwm-b31333397785733587b3bfe3adb27ff2761702b5.tar.gz
hit it with the knf stick.
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/calmwm.c b/calmwm.c
index e10a89d..84bff28 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: calmwm.c,v 1.15 2008/04/15 18:22:08 okan Exp $
+ * $Id: calmwm.c,v 1.16 2008/04/15 20:24:41 oga Exp $
*/
#include "headers.h"
@@ -38,7 +38,7 @@ struct client_ctx_q Clientq;
int Doshape, Shape_ev;
int Starting;
struct conf Conf;
-struct fontdesc *DefaultFont = NULL;
+struct fontdesc *DefaultFont = NULL;
/* From TWM */
#define gray_width 2
@@ -46,7 +46,7 @@ struct fontdesc *DefaultFont = NULL;
static char gray_bits[] = {0x02, 0x01};
-static void _sigchld_cb(int);
+static void _sigchld_cb(int);
int
main(int argc, char **argv)
@@ -72,11 +72,11 @@ main(int argc, char **argv)
argv += optind;
/* Ignore a few signals. */
- if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
- err(1, "signal");
+ if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
+ err(1, "signal");
- if (signal(SIGCHLD, _sigchld_cb) == SIG_ERR)
- err(1, "signal");
+ if (signal(SIGCHLD, _sigchld_cb) == SIG_ERR)
+ err(1, "signal");
group_init();
@@ -176,16 +176,16 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
sc->redpixl = sc->redcolor.pixel;
sc->cyanpixl = sc->cyancolor.pixel;
- sc->gray = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
- gray_bits, gray_width, gray_height,
- sc->blackpixl, sc->whitepixl, DefaultDepth(X_Dpy, sc->which));
+ sc->gray = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
+ gray_bits, gray_width, gray_height,
+ sc->blackpixl, sc->whitepixl, DefaultDepth(X_Dpy, sc->which));
- sc->blue = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
- gray_bits, gray_width, gray_height,
- sc->bluepixl, sc->whitepixl, DefaultDepth(X_Dpy, sc->which));
+ sc->blue = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
+ gray_bits, gray_width, gray_height,
+ sc->bluepixl, sc->whitepixl, DefaultDepth(X_Dpy, sc->which));
- sc->red = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
- gray_bits, gray_width, gray_height,
+ sc->red = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin,
+ gray_bits, gray_width, gray_height,
sc->redpixl, sc->whitepixl, DefaultDepth(X_Dpy, sc->which));
gv.foreground = sc->blackpixl^sc->whitepixl;
@@ -216,7 +216,7 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
search_init(sc);
/* Deal with existing clients. */
- XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins);
+ XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins);
for (i = 0; i < nwins; i++) {
XGetWindowAttributes(X_Dpy, wins[i], &winattr);
@@ -287,11 +287,11 @@ x_errorhandler(Display *dpy, XErrorEvent *e)
}
#endif
- if (Starting &&
- e->error_code == BadAccess &&
- e->request_code == X_GrabKey)
+ if (Starting &&
+ e->error_code == BadAccess &&
+ e->request_code == X_GrabKey)
errx(1, "root window unavailable - perhaps another "
- "wm is running?");
+ "wm is running?");
return (0);
}
@@ -302,9 +302,9 @@ _sigchld_cb(int which)
pid_t pid;
int status;
-/* Collect dead children. */
- while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
- (pid < 0 && errno == EINTR))
+ /* Collect dead children. */
+ while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
+ (pid < 0 && errno == EINTR))
;
}