summaryrefslogtreecommitdiff
path: root/ACE/examples/Shared_Memory/test_SV.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Shared_Memory/test_SV.cpp')
-rw-r--r--ACE/examples/Shared_Memory/test_SV.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Shared_Memory/test_SV.cpp b/ACE/examples/Shared_Memory/test_SV.cpp
index 217acf068fc..ac20d33e93a 100644
--- a/ACE/examples/Shared_Memory/test_SV.cpp
+++ b/ACE/examples/Shared_Memory/test_SV.cpp
@@ -6,7 +6,7 @@
#define SHM_KEY (key_t) 5678
static void
-client (void)
+client ()
{
ACE_Shared_Memory_SV shm_client (SHM_KEY, SHMSZ);
char *shm = (char *) shm_client.malloc ();
@@ -19,7 +19,7 @@ client (void)
}
static void
-server (void)
+server ()
{
ACE_Shared_Memory_SV shm_server (SHM_KEY,
SHMSZ,