Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-Id: <199910141627.SAA43108@ihfdfs.ihf.uni-stuttgart.de> From: "Ulrich Jakobus" To: "cygwin AT sourceware DOT cygnus DOT com" Date: Thu, 14 Oct 1999 18:27:39 +0200 Reply-To: "Ulrich Jakobus" X-Mailer: PMMail 98 Standard (2.01.1600) For Windows 95 (4.0.1111) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Bug in sscanf for long long data? Hello, [ I have sent this message already on Monday to this list, however, I have not received it myself nor can I find it in the archives, so I try my luck again, sorry for a possible duplication. ] I am using gcc version "2.95 19990728 (release)" under the cygnus shell version (output of uname -a) "CYGWIN_95-4.0 IHFPCUJ 21.0 (0.8/1/1) 1999-1-16 00:09:28 i586 unknown" (the latest beta release, no snapshot). I have problems with the sscanf function processing data of type long long, the following short code illustrates this: --------------------------------------- #include int main() { long long ll; /* this initialisation will result in a correct output: */ /* ll = 0; */ /* this initialisation will result in an incorrect output */ ll = -9999999999; sscanf ("123456789", "%lld", &ll); printf ("%lld\n", ll); return (0); } --------------------------------------- The code as printed above gives the incorrect output -12761445099 to the screen. However, if the statement ll = -9999999999; is replaced by the initialisation ll = 0; then the output is correct: 123456789 When ll is not being initialised, then the output is unpredictable. Executing the same code on a LINUX system with either gcc-2.8.1 or gcc-2.95.1 results in the correct output in all three cases. Any ideas? Is this a cygwin gcc bug? Ulrich -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com