X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=6ada770adaafbc3e8c83623e495d6f18323e1cf9;hb=93598589f1d05c46a30c57a39d959a8702123fa2;hp=3f764f2b639e671970463a702fdb9c1d5cd31670;hpb=b2b8ad92bfbc60392737fe9945e719b238d34933;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index 3f764f2b..6ada770a 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -326,7 +326,8 @@ gint main(gint argc, gchar **argv) /* re-run me */ execvp(argv[0], argv); /* try how we were run */ - execlp(argv[0], g_path_get_basename(argv[0])); /* last resort */ + execlp(argv[0], g_path_get_basename(argv[0]), + (char *)NULL); /* last resort */ } return exitcode; @@ -357,8 +358,8 @@ static void signal_handler(gint signal, gpointer data) static void print_version() { g_print("Openbox %s\n", PACKAGE_VERSION); - g_print("Copyright (c) 2004 Mikael Magnusson, and others\n"); - g_print("Copyright (c) 2003 Ben Jansens, and others\n\n"); + g_print("Copyright (c) 2004 Mikael Magnusson\n"); + g_print("Copyright (c) 2003 Ben Jansens\n\n"); g_print("This program comes with ABSOLUTELY NO WARRANTY.\n"); g_print("This is free software, and you are welcome to redistribute it\n"); g_print("under certain conditions. See the file COPYING for details.\n\n");