From: "Piotr Eljasiak" Newsgroups: comp.os.msdos.djgpp Subject: 'long long' ostream::form() bug report Date: Wed, 18 Oct 2000 00:22:24 +0200 Organization: tp.internet - http://www.tpi.pl Lines: 22 Message-ID: <8sijc9$s3q$1@news.tpi.pl> NNTP-Posting-Host: pe127.gdansk.cvx.ppp.tpnet.pl X-Trace: news.tpi.pl 971821257 28794 213.76.28.127 (17 Oct 2000 22:20:57 GMT) X-Complaints-To: usenet AT tpi DOT pl NNTP-Posting-Date: 17 Oct 2000 22:20:57 GMT X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MSMail-Priority: Normal X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com The following code: long long i1=1, i2=2, i3=3, i4=4; printf("%lli %lli %lli %lli\n",i1,i2,i3,i4); cout << i1 << ' ' << i2 << ' ' << i3 << ' ' << i4 << endl; cout.form("%lli %lli %lli %lli\n",i1,i2,i3,i4); gives the ouput: 1 2 3 4 // OK 1 2 3 4 // OK 1 0 2 0 // error what makes me suspect that ostream::form() does not support long long GNU extension ;o( Piotr Eljasiak