diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-17 10:56:42 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-17 11:08:03 +0100 |
commit | d588da69e57dad3bff8a90735736601de288a971 (patch) | |
tree | b269133638ca25ef27476562a2bda77dd6e22eaf /src/Main.cxx | |
parent | ec54a5c72c92d20ca3fa69717ca4ab197ed8552b (diff) |
CommandLine: convert pointer to reference
Diffstat (limited to 'src/Main.cxx')
-rw-r--r-- | src/Main.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.cxx b/src/Main.cxx index 195acce33..9a4a0ec8a 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -469,7 +469,7 @@ try { ReadConfigFile(config_path); } #else - ParseCommandLine(argc, argv, &options); + ParseCommandLine(argc, argv, options); #endif const auto config = LoadConfig(); |