mirror of
https://github.com/mpv-player/mpv
synced 2025-01-29 11:12:56 +00:00
mplayer: fix command line arguments log output
In commit 94782e464d
, code was added to remove the first
command line argument. (Because that is essentially useless.) The code
for printing with command line on -v still assumed the first argument
should be skipped.
This commit is contained in:
parent
988dad5fc7
commit
6386b11324
@ -3951,7 +3951,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n");
|
||||
mp_tmsg(MSGT_CPLAYER, MSGL_V, "Command line:");
|
||||
for (int i = 1; i < argc; i++)
|
||||
for (int i = 0; i < argc; i++)
|
||||
mp_msg(MSGT_CPLAYER, MSGL_V, " '%s'", argv[i]);
|
||||
mp_msg(MSGT_CPLAYER, MSGL_V, "\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user