This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kbob_ru
Recipients
Date 2006-01-16.06:33:01
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
in Modules/bz2module.c

#if SIZEOF_LONG >= 8
#define BZS_TOTAL_OUT(bzs) \
	(((long)bzs->total_out_hi32 << 32) + bzs-
>total_out_lo32)
#elif SIZEOF_LONG_LONG >= 8
#define BZS_TOTAL_OUT(bzs) \
	(((PY_LONG_LONG)bzs->total_out_hi32 << 32) + 
bzs->total_out_lo32)
#else
#define BZS_TOTAL_OUT(bzs) \
	bzs->total_out_lo32;
#endif

when #else statmen execute it leads to error, because 
no semicolon needed in the end of definition:

#define BZS_TOTAL_OUT(bzs) \
	bzs->total_out_lo32;

This error found in version 2.3.5 and 2.4.2.
History
Date User Action Args
2007-08-23 14:37:21adminlinkissue1407069 messages
2007-08-23 14:37:21admincreate