diff options
author | Michael Meeks <michael.meeks@novell.com> | 2011-05-24 15:27:23 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2011-05-24 15:27:23 +0100 |
commit | 10cc02740dbcacfb4cf13f7b9fc71b25ef8e3777 (patch) | |
tree | 5c328c03ed86470333544b88a5831f4ad64fa394 /desktop/unx/source | |
parent | b41941a81473b48e895ab3a30905986b029facc4 (diff) |
remove erroneous FIXMEs when re-starting oosplash.bin
Diffstat (limited to 'desktop/unx/source')
-rwxr-xr-x | desktop/unx/source/start.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index 4436ae7b2835..9ff95533e6b1 100755 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -1003,12 +1003,16 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv ) switch (child_get_exit_code (info)) { case 79: // re-start with just -env: parameters - fprintf (stderr, "FIXME: re-start with just -env: params !\n"); +#if OSL_DEBUG_LEVEL > 0 + fprintf (stderr, "oosplash: re-start with just -env: params !\n"); +#endif bRestart = sal_True; bAllArgs = sal_False; break; case 81: // re-start with all arguments - fprintf (stderr, "FIXME: re-start with all params !\n"); +#if OSL_DEBUG_LEVEL > 0 + fprintf (stderr, "oosplash: re-start with all params !\n"); +#endif bRestart = sal_True; bAllArgs = sal_True; break; |