Module Name: src
Committed By: rillig
Date: Sat Nov 14 17:29:41 UTC 2020
Modified Files:
src/usr.bin/make: main.c
Log Message:
make(1): use different style of accessing characters in MainParseArgs
The * is preferred for iterators. Since argv[i] is not an iterator but
a fixed string, argv[i][0] expresses the idea "read the first character"
more directly.
To generate a diff of this commit:
cvs rdiff -u -r1.459 -r1.460 src/usr.bin/make/main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.