summaryrefslogtreecommitdiff
path: root/desktop/test
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 12:54:26 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-13 15:15:34 +0100
commiteedafe6e5c1c1f598170e6349c29ed19437d1f8c (patch)
treef4b2dc05c217ce6cae998bb1adb04968c4e44fe4 /desktop/test
parentfddcbd5d28bb58993ee3d210f1d11e57c70a8894 (diff)
tdf#123936 Formatting files in module desktop with clang-format
Change-Id: I39856d77a2ef506612b68fccfd0ba9c9d6b1debc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105661 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'desktop/test')
-rw-r--r--desktop/test/deployment/executable_content/build/hello.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/desktop/test/deployment/executable_content/build/hello.c b/desktop/test/deployment/executable_content/build/hello.c
index b88f0e1c039e..d527e71524f7 100644
--- a/desktop/test/deployment/executable_content/build/hello.c
+++ b/desktop/test/deployment/executable_content/build/hello.c
@@ -17,10 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <stdio.h>
-int main(int argc , char** argv, char** envp)
+int main(int argc, char** argv, char** envp)
{
//prevent warning about unused parameters
//we need to provide parameter names in C
@@ -28,9 +27,8 @@ int main(int argc , char** argv, char** envp)
(void)argv;
(void)envp;
- fprintf(stdout,"Hello world!\n");
+ fprintf(stdout, "Hello world!\n");
return 0;
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */