aboutsummaryrefslogtreecommitdiff
path: root/q.c
diff options
context:
space:
mode:
Diffstat (limited to 'q.c')
-rw-r--r--q.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/q.c b/q.c
index 6d7eced5..a6a9a0b6 100644
--- a/q.c
+++ b/q.c
@@ -62,7 +62,7 @@ APPLET lookup_applet(const char *applet)
/* this is possibly an alias like "belongs"
* NOTE: we continue where the previous loop left, e.g. on the first
* alias (desc == NULL) */
- for ( ; applets[i].name != NULL; i++) {
+ for (/*i*/; applets[i].name != NULL; i++) {
if (strcmp(applets[i].name, applet) == 0) {
unsigned int j;