CommandLine: convert pointer to reference

This commit is contained in:
Max Kellermann
2018-01-17 10:56:42 +01:00
parent ec54a5c72c
commit d588da69e5
3 changed files with 8 additions and 8 deletions

@ -28,6 +28,6 @@ struct options {
};
void
ParseCommandLine(int argc, char **argv, struct options *options);
ParseCommandLine(int argc, char **argv, struct options &options);
#endif