diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2015-05-08 16:43:13 +0200 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2015-05-08 16:44:18 +0200 |
commit | 10d4e479c5f6d91bf86e15be3a12c6b09c9808be (patch) | |
tree | 41ce5b70ab82c44fb86d152108d200d226d33ca9 | |
parent | b1289f30b79c9c5ea43a9e9c624406d7d0661692 (diff) |
consistently use () with sizeof
-rw-r--r-- | slock.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -133,7 +133,7 @@ readpw(Display *dpy, const char *pws) | |||
133 | while (running && !XNextEvent(dpy, &ev)) { | 133 | while (running && !XNextEvent(dpy, &ev)) { |
134 | if (ev.type == KeyPress) { | 134 | if (ev.type == KeyPress) { |
135 | buf[0] = 0; | 135 | buf[0] = 0; |
136 | num = XLookupString(&ev.xkey, buf, sizeof buf, &ksym, 0); | 136 | num = XLookupString(&ev.xkey, buf, sizeof(buf), &ksym, 0); |
137 | if (IsKeypadKey(ksym)) { | 137 | if (IsKeypadKey(ksym)) { |
138 | if (ksym == XK_KP_Enter) | 138 | if (ksym == XK_KP_Enter) |
139 | ksym = XK_Return; | 139 | ksym = XK_Return; |
@@ -168,7 +168,7 @@ readpw(Display *dpy, const char *pws) | |||
168 | --len; | 168 | --len; |
169 | break; | 169 | break; |
170 | default: | 170 | default: |
171 | if (num && !iscntrl((int) buf[0]) && (len + num < sizeof passwd)) { | 171 | if (num && !iscntrl((int) buf[0]) && (len + num < sizeof(passwd))) { |
172 | memcpy(passwd + len, buf, num); | 172 | memcpy(passwd + len, buf, num); |
173 | len += num; | 173 | len += num; |
174 | } | 174 | } |