use consistent style

This commit is contained in:
Daniel Micay 2012-06-11 14:26:51 -04:00
parent 9a15fb7dcd
commit 9b6c44f487
1 changed files with 2 additions and 2 deletions

View File

@ -438,8 +438,8 @@ int main(int argc, char **argv) {
GOptionContext *context = g_option_context_new("[COMMAND]");
gchar *role = NULL;
const GOptionEntry entries[] = {
{ "role", 'r', 0, G_OPTION_ARG_STRING, &role, "The role to use", "ROLE" },
{ NULL }
{"role", 'r', 0, G_OPTION_ARG_STRING, &role, "The role to use", "ROLE"},
{NULL}
};
g_option_context_add_main_entries(context, entries, NULL);
g_option_context_add_group(context, gtk_get_option_group(TRUE));