aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-11-26 14:26:53 +0100
committerarg@mig29 <unknown>2006-11-26 14:26:53 +0100
commit61a1910f91fe6aba428193087d6c3ff21374ee5e (patch)
treec6406dfd44df07e2e54309f29aef093b798d3d2d /tag.c
parent27ef73507b69608c63bd7d1684b7d9987fbcce53 (diff)
downloaddwm-61a1910f91fe6aba428193087d6c3ff21374ee5e.tar.gz
applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index fd08853..b1a2eb9 100644
--- a/tag.c
+++ b/tag.c
@@ -50,7 +50,7 @@ initrregs(void) {
if(rreg)
return;
- len = sizeof(rule) / sizeof(rule[0]);
+ len = sizeof rule / sizeof rule[0];
rreg = emallocz(len * sizeof(RReg));
for(i = 0; i < len; i++) {
if(rule[i].clpattern) {
@@ -83,7 +83,7 @@ settags(Client *c, Client *trans) {
c->tags[i] = trans->tags[i];
}
else if(XGetClassHint(dpy, c->win, &ch)) {
- snprintf(prop, sizeof(prop), "%s:%s:%s",
+ snprintf(prop, sizeof prop, "%s:%s:%s",
ch.res_class ? ch.res_class : "",
ch.res_name ? ch.res_name : "", c->name);
for(i = 0; !matched && i < len; i++)