summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-04-11 18:37:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-04-11 19:40:51 +0200
commitde465317350f94c8b3308c73572467b588af5af0 (patch)
tree868c13a2c1467b7c7f62447241ac9b233862b3be /odk
parent6fc3dfd3f1b5cb13101299df42444f2ff0493846 (diff)
-Werror,-Wstrict-prototypes (clang-cl)
Change-Id: I72e35f51eb607662608ccaf944bec64ed422cef4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132835 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'odk')
-rw-r--r--odk/source/unoapploader/win/unoapploader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/source/unoapploader/win/unoapploader.c b/odk/source/unoapploader/win/unoapploader.c
index 4baa3ddda8c5..7a4f9e98e3de 100644
--- a/odk/source/unoapploader/win/unoapploader.c
+++ b/odk/source/unoapploader/win/unoapploader.c
@@ -265,7 +265,7 @@ int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
* found, or if an error occurred.
* Returned pointer must be released with free()
*/
-wchar_t* getPath()
+wchar_t* getPath(void)
{
wchar_t* path = cppuhelper_detail_findSofficePath();
@@ -400,7 +400,7 @@ void writeError( const char* errstr )
/*
* Closes the error file.
*/
-void closeErrorFile()
+void closeErrorFile(void)
{
FILE* ferr = getErrorFile( 0 );
if ( ferr != NULL )