diff options
Diffstat (limited to 'desktop/source/app/main.c')
-rw-r--r-- | desktop/source/app/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/app/main.c b/desktop/source/app/main.c index 643c42a7ad24..6631c3ceb337 100644 --- a/desktop/source/app/main.c +++ b/desktop/source/app/main.c @@ -29,7 +29,7 @@ static int g_Exiting = 0; /* HACK: detect calls to xmlCleanupParser, which causes hard to debug crashes */ -__attribute__ ((visibility("default"))) void xmlCleanupParser(void) +__attribute__((visibility("default"))) void xmlCleanupParser(void) { /* there are libraries that register xmlCleanupParser as an atexit handler, which is not entirely sound (another atexit handler could want to @@ -44,7 +44,8 @@ __attribute__ ((visibility("default"))) void xmlCleanupParser(void) #endif #endif -SAL_IMPLEMENT_MAIN() { +SAL_IMPLEMENT_MAIN() +{ int ret = soffice_main(); #ifdef DBG_UTIL #ifdef __gnu_linux__ @@ -54,5 +55,4 @@ SAL_IMPLEMENT_MAIN() { return ret; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |