April 20, 2026
2:38 p.m.
Akihiro Sagawa (@sgwaki) commented about tools/makedep.c:
strarray_add( array, xstrdup( strtok( NULL, "" ))); return; } + else if (!strcmp( flag, "otf" )) + { + source->flags |= FLAG_SFD_OTF; + }
For consistency, how about using the following style: ```c else if (!strcmp( flag, "otf" )) source->flags |= FLAG_SFD_OTF; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10603#note_137103