Commit 557faa4f authored by Tom Lane's avatar Tom Lane

Random speculation about the reason for PPC64 buildfarm failures:

maybe isalnum is returning a value with the low-order byte all zero?
parent dad4215d
/* -----------------------------------------------------------------------
* formatting.c
*
* $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.148 2008/09/26 15:35:28 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.149 2008/10/06 05:03:27 tgl Exp $
*
*
* Portions Copyright (c) 1999-2008, PostgreSQL Global Development Group
......@@ -1549,7 +1549,7 @@ char *
str_initcap(const char *buff, size_t nbytes)
{
char *result;
bool wasalnum = false;
int wasalnum = false;
if (!buff)
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment