diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2009-05-12 20:34:13 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2009-05-12 20:34:13 +0000 |
| commit | eae3947ff54bfe2d7a0fa70cea02c4194f50ccf4 (patch) | |
| tree | c41a34c013fa7b0814023f0a2e7c2943321f29b3 /cpp/src/qpid/sys/posix/Time.cpp | |
| parent | 8ad39ce15e81423e635c4e4425fc71674e878ce5 (diff) | |
| download | qpid-python-eae3947ff54bfe2d7a0fa70cea02c4194f50ccf4.tar.gz | |
Fix typo
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@774069 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/posix/Time.cpp')
| -rw-r--r-- | cpp/src/qpid/sys/posix/Time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/posix/Time.cpp b/cpp/src/qpid/sys/posix/Time.cpp index 5eb65357f6..bd1863f860 100644 --- a/cpp/src/qpid/sys/posix/Time.cpp +++ b/cpp/src/qpid/sys/posix/Time.cpp @@ -92,7 +92,7 @@ inline std::ostream& outputFormattedTime(std::ostream& o, const ::time_t* time) std::ostream& operator<<(std::ostream& o, const AbsTime& t) { ::time_t rawtime(t.timepoint/TIME_SEC); - return outputFormattedTime(&rawtime); + return outputFormattedTime(o, &rawtime); } void outputFormattedNow(std::ostream& o) { |
