Formatting

This commit is contained in:
Francisco Lopes 2020-12-30 21:32:58 -03:00
parent a062311ffb
commit c738e8783a
No known key found for this signature in database
GPG Key ID: 2E754CF1886344B5

View File

@ -69,8 +69,8 @@ void write_event_with_mode(struct input_event *event, int mode) {
}
int main(int argc, char *argv[]) {
int opt, mode = 0, delay = 20000;
while ((opt = getopt(argc, argv, "ht:m:")) != -1) {
int mode = 0, delay = 20000;
for (int opt; (opt = getopt(argc, argv, "ht:m:")) != -1;) {
switch (opt) {
case 'h':
return print_usage(stdout, argv[0]), EXIT_SUCCESS;