let's keep parenthesis around sizeof

This commit is contained in:
Benjamin Peterson 2011-03-28 17:25:15 -05:00
parent 9b2e67c4fa
commit ad45bfe2d3
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,9 @@
const char * const char *
Py_GetBuildInfo(void) Py_GetBuildInfo(void)
{ {
static char buildinfo[50 + sizeof HGVERSION + static char buildinfo[50 + sizeof(HGVERSION) +
((sizeof HGTAG > sizeof HGBRANCH) ? ((sizeof(HGTAG) > sizeof(HGBRANCH)) ?
sizeof HGTAG : sizeof HGBRANCH)]; sizeof(HGTAG) : sizeof(HGBRANCH))];
const char *revision = _Py_hgversion(); const char *revision = _Py_hgversion();
const char *sep = *revision ? ":" : ""; const char *sep = *revision ? ":" : "";
const char *hgid = _Py_hgidentifier(); const char *hgid = _Py_hgidentifier();