diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-12 01:23:28 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-12 01:23:28 +0000 |
commit | 1a9e61ab3ac0db6bc4e75172843c969aa0eb23f8 (patch) | |
tree | 0fc2a4c5edef68932e793a0f148c32caf8995e45 /examples | |
parent | dbf4c75c5d653c28014c29cba2683d5814d76819 (diff) | |
download | ATCD-1a9e61ab3ac0db6bc4e75172843c969aa0eb23f8.tar.gz |
(main): fixed typo, missing ; at end of statement
Diffstat (limited to 'examples')
-rw-r--r-- | examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp b/examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp index e3001e2e2b6..85a28644c55 100644 --- a/examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp +++ b/examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp @@ -75,7 +75,7 @@ main (int argc, char *argv[]) if (fifo_reader.get_handle () == ACE_INVALID_HANDLE) return -1; - pid_t child_pid = ACE_OS::fork () + pid_t child_pid = ACE_OS::fork (); switch (child_pid) { |