# | Line 84 | Line 84 | m_watch(struct Client *source_p, int par | |
---|---|---|
84 | if (parc < 2) | |
85 | parv[1] = def; | |
86 | ||
87 | < | for (char *s = strtok_r(parv[1], ", ", &p); s; |
88 | < | s = strtok_r(NULL, ", ", &p)) |
87 | > | for (const char *s = strtok_r(parv[1], ", ", &p); s; |
88 | > | s = strtok_r(NULL, ", ", &p)) |
89 | { | |
90 | char *user; | |
91 | if ((user = strchr(s, '!'))) |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |