~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/kernel/log/LogStream.cpp

  • Committer: Anders Logg
  • Date: 2007-01-10 09:04:44 UTC
  • mfrom: (1689.1.221 trunk)
  • Revision ID: logg@simula.no-20070110090444-ecyux3n1qnei4i8h
RemoveĀ oldĀ head

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
LogStream& LogStream::operator<<(unsigned int a)
70
70
{
71
71
  char tmp[DOLFIN_WORDLENGTH];
72
 
  sprintf(tmp, "%d", a);
 
72
  sprintf(tmp, "%u", a);
73
73
  add(tmp);
74
74
  return *this;
75
75
}