diff options
author | Thomas Haller <thaller@redhat.com> | 2015-03-13 20:47:03 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-03-20 11:43:29 +0100 |
commit | ee4543bd6e4958e93d19a878f8403c4afa398c6e (patch) | |
tree | a54fa7afc067e8acb43bb06444d14b94c85d8983 /src/main-utils.h | |
parent | b8a2f42a38219b4e1f9c87a78f68d5551e1d6c08 (diff) | |
download | NetworkManager-ee4543bd6e4958e93d19a878f8403c4afa398c6e.tar.gz |
main/trivial: change order of arguments for nm_main_utils_early_setup()
Change the order of the argv and argc argument to match
the main() function.
Diffstat (limited to 'src/main-utils.h')
-rw-r--r-- | src/main-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main-utils.h b/src/main-utils.h index 9b29866be0..88d217a559 100644 --- a/src/main-utils.h +++ b/src/main-utils.h @@ -30,8 +30,8 @@ gboolean nm_main_utils_write_pidfile (const char *pidfile); gboolean nm_main_utils_check_pidfile (const char *pidfile, const char *name); gboolean nm_main_utils_early_setup (const char *progname, - char **argv[], int *argc, + char **argv[], GOptionEntry *options, void (*option_context_hook) (gpointer user_data, GOptionContext *opt_ctx), gpointer option_context_hook_data, |