diff options
author | Adrien Plazas <kekun.plazas@laposte.net> | 2018-11-26 15:19:36 +0100 |
---|---|---|
committer | Adrien Plazas <kekun.plazas@laposte.net> | 2018-11-26 15:36:11 +0100 |
commit | 8201c369a2199c5e8492d621f7766b6267f0b2bc (patch) | |
tree | 07be337d4fca0d1478f8135e41809d8de4702d81 /shell | |
parent | fbf3c5736b1e6e3e915efcc3295a78c686eea638 (diff) | |
download | gnome-control-center-8201c369a2199c5e8492d621f7766b6267f0b2bc.tar.gz |
Fix the style of main()'s prototype
Diffstat (limited to 'shell')
-rw-r--r-- | shell/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c index d323582d3..29b99cd2f 100644 --- a/shell/main.c +++ b/shell/main.c @@ -36,7 +36,8 @@ #include "cc-application.h" int -main (int argc, char **argv) +main (gint argc, + gchar **argv) { g_autoptr(GtkApplication) application = NULL; |