From f9e740af36b44a1c9e834dc8fff08fba8fb1b13f Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Sun, 14 Jul 2002 06:35:33 +0000 Subject: Applied patches from debian bug #104967 (not yet tested) --- lib/psitime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/psitime.h') diff --git a/lib/psitime.h b/lib/psitime.h index 7732783..79fd521 100644 --- a/lib/psitime.h +++ b/lib/psitime.h @@ -68,7 +68,7 @@ typedef struct psi_timeval_t { int d = micro % 365; micro /= 365; int y = micro; - o << dec; + o << std::dec; if (y > 0) o << y << ((y > 1) ? _(" years ") : _(" year ")); if (d > 0) @@ -99,7 +99,7 @@ typedef struct psi_timezone_t { ostream::fmtflags old = s.flags(); int h = ptz.utc_offset / 3600; int m = ptz.utc_offset % 3600; - s << "offs: " << dec << h << "h"; + s << "offs: " << std::dec << h << "h"; if (m != 0) s << ", " << m << "m"; s.flags(old); -- cgit v1.2.3