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 | 3626934e6a392c50255e38c38a3226f9b535fcef (patch) | |
| tree | db001e488f327e92c6038b28484ca984a8826902 /qpid/cpp | |
| parent | fe5c834c2871e24fe5076e260dcd7bf19d393f98 (diff) | |
| download | qpid-python-3626934e6a392c50255e38c38a3226f9b535fcef.tar.gz | |
Fix typo
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@774069 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/sys/posix/Time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/posix/Time.cpp b/qpid/cpp/src/qpid/sys/posix/Time.cpp index 5eb65357f6..bd1863f860 100644 --- a/qpid/cpp/src/qpid/sys/posix/Time.cpp +++ b/qpid/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) { |
