diff options
| author | Christian Rendina <[email protected]> | 2025-04-15 15:40:44 +0200 |
|---|---|---|
| committer | Christian Rendina <[email protected]> | 2025-04-15 15:40:44 +0200 |
| commit | d9d3b81f0804717fa1055c7106de72445d2b2264 (patch) | |
| tree | fb58f325c4c1e9e54a18914563330fdc67d8f0c4 /tests/projects | |
| parent | 228a13777b5c0c5e8c0c09f1eefa73add81c269e (diff) | |
Address formatting
Diffstat (limited to 'tests/projects')
| -rw-r--r-- | tests/projects/idl/test_norpc/src/test_iid.c | 2 | ||||
| -rw-r--r-- | tests/projects/idl/test_norpc_proxy/src/test_iid.c | 2 | ||||
| -rw-r--r-- | tests/projects/idl/test_rpc/src/test_iid.c | 2 | ||||
| -rw-r--r-- | tests/projects/idl/test_rpc_noserver/src/test_iid.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/projects/idl/test_norpc/src/test_iid.c b/tests/projects/idl/test_norpc/src/test_iid.c index b581c32fb..79b344b9a 100644 --- a/tests/projects/idl/test_norpc/src/test_iid.c +++ b/tests/projects/idl/test_norpc/src/test_iid.c @@ -1,7 +1,7 @@ #include <lockowner.h> #include <stdio.h> -int main() { +int main(int argc, char** argv) { IID g = IID_ILockOwner; printf("GUID: %x-%x-%x-%llx", g.Data1, g.Data2, g.Data3, *(unsigned long long*)g.Data4); return 0; diff --git a/tests/projects/idl/test_norpc_proxy/src/test_iid.c b/tests/projects/idl/test_norpc_proxy/src/test_iid.c index b581c32fb..79b344b9a 100644 --- a/tests/projects/idl/test_norpc_proxy/src/test_iid.c +++ b/tests/projects/idl/test_norpc_proxy/src/test_iid.c @@ -1,7 +1,7 @@ #include <lockowner.h> #include <stdio.h> -int main() { +int main(int argc, char** argv) { IID g = IID_ILockOwner; printf("GUID: %x-%x-%x-%llx", g.Data1, g.Data2, g.Data3, *(unsigned long long*)g.Data4); return 0; diff --git a/tests/projects/idl/test_rpc/src/test_iid.c b/tests/projects/idl/test_rpc/src/test_iid.c index b835c9fde..56e1e6e47 100644 --- a/tests/projects/idl/test_rpc/src/test_iid.c +++ b/tests/projects/idl/test_rpc/src/test_iid.c @@ -2,7 +2,7 @@ #include <example.h> #include <stdio.h> -int main() { +int main(int argc, char** argv) { MyInterface_v1_0_c_ifspec = (void*)1; MyInterface_v1_0_s_ifspec = (void*)1; printf("set ok\n"); diff --git a/tests/projects/idl/test_rpc_noserver/src/test_iid.c b/tests/projects/idl/test_rpc_noserver/src/test_iid.c index 8edfb7807..041033894 100644 --- a/tests/projects/idl/test_rpc_noserver/src/test_iid.c +++ b/tests/projects/idl/test_rpc_noserver/src/test_iid.c @@ -2,7 +2,7 @@ #include <example.h> #include <stdio.h> -int main() { +int main(int argc, char** argv) { MyInterface_v1_0_c_ifspec = (void*)1; printf("call ok\n"); return 0; |
