summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pluma/pluma.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pluma/pluma.c b/pluma/pluma.c
index 2eeaed48..82766cfb 100644
--- a/pluma/pluma.c
+++ b/pluma/pluma.c
@@ -83,7 +83,7 @@ show_version_and_quit (void)
{
g_print ("%s - Version %s\n", g_get_application_name (), VERSION);
- exit (0);
+ exit (EXIT_SUCCESS);
}
static void
@@ -99,7 +99,7 @@ list_encodings_and_quit (void)
++i;
}
- exit (0);
+ exit (EXIT_SUCCESS);
}
static const GOptionEntry options [] =
@@ -563,7 +563,7 @@ main (int argc, char *argv[])
bacon_message_connection_free (connection);
- exit (0);
+ exit (EXIT_SUCCESS);
}
else
{
@@ -651,6 +651,6 @@ main (int argc, char *argv[])
pluma_metadata_manager_shutdown ();
#endif
- return 0;
+ return EXIT_SUCCESS;
}