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/CommandLine.hxx | |
parent | ec54a5c72c92d20ca3fa69717ca4ab197ed8552b (diff) |
CommandLine: convert pointer to reference
Diffstat (limited to 'src/CommandLine.hxx')
-rw-r--r-- | src/CommandLine.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CommandLine.hxx b/src/CommandLine.hxx index 1f270d757..2db067988 100644 --- a/src/CommandLine.hxx +++ b/src/CommandLine.hxx @@ -28,6 +28,6 @@ struct options { }; void -ParseCommandLine(int argc, char **argv, struct options *options); +ParseCommandLine(int argc, char **argv, struct options &options); #endif |