summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2003-01-29 02:20:02 +0000
committerGlynn Foster <gman@src.gnome.org>2003-01-29 02:20:02 +0000
commitfeef0396836668db950026ce637ce805900dc1d7 (patch)
tree9447ab4e36afb6ab077bac770be90b49fdbe9463 /src/main.c
parent574404b13e1b301bd7abff84c027226503cc4df9 (diff)
Don't do a g_assert_not_reached () if we don't have any dialog types.
2003-01-29 Glynn Foster <glynn.foster@sun.com> * src/main.c: Don't do a g_assert_not_reached () if we don't have any dialog types.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 1339923..233aba5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1020,6 +1020,10 @@ main (gint argc, gchar **argv) {
case MODE_ABOUT:
zenity_about (results->data);
break;
+ case MODE_LAST:
+ g_printerr (_("You must specify a dialog type. See 'zenity --help' for details\n"));
+ zenity_free_parsing_options ();
+ exit (-1);
default:
g_assert_not_reached ();
zenity_free_parsing_options ();