diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-20 17:13:21 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-20 17:13:21 +0000 |
commit | d5f06db7f03b85d2ab64d7659275611ee4ec8201 (patch) | |
tree | 0df9ec0aa49fdfead4f8c0d59752b54952cfdbcd /netsvcs | |
parent | c5e6dcf57aab34e6fd9f3fa94e3728b5f6f02331 (diff) | |
download | ATCD-d5f06db7f03b85d2ab64d7659275611ee4ec8201.tar.gz |
(run_writer): initialized variable "t" to avoid compiler warning
Diffstat (limited to 'netsvcs')
-rw-r--r-- | netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp b/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp index 14b485f02fc..d4fd092def1 100644 --- a/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp +++ b/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp @@ -112,7 +112,7 @@ run_writer (void *vp) for (int x = 0; x < iterations; x++) { // Cycle through each of the first three tokens. - ACE_Token_Proxy *t; + ACE_Token_Proxy *t = 0; switch (acquire_number) { case 0: |