mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Suppress implicit-conversion warnings seen with newer clang versions.
We were assigning values near 255 through "char *" pointers. On machines where char is signed, that's not entirely kosher, and it's reasonable for compilers to warn about it. A better solution would be to change the pointer type to "unsigned char *", but that would be vastly more invasive. For the moment, let's just apply this simple backpatchable solution. Aleksander Alekseev Discussion: https://postgr.es/m/20170220141239.GD12278@e733.localdomain Discussion: https://postgr.es/m/2839.1490714708@sss.pgh.pa.us
This commit is contained in:
@ -5044,7 +5044,7 @@ BootStrapXLOG(void)
|
||||
record->xl_rmid = RM_XLOG_ID;
|
||||
recptr += SizeOfXLogRecord;
|
||||
/* fill the XLogRecordDataHeaderShort struct */
|
||||
*(recptr++) = XLR_BLOCK_ID_DATA_SHORT;
|
||||
*(recptr++) = (char) XLR_BLOCK_ID_DATA_SHORT;
|
||||
*(recptr++) = sizeof(checkPoint);
|
||||
memcpy(recptr, &checkPoint, sizeof(checkPoint));
|
||||
recptr += sizeof(checkPoint);
|
||||
|
Reference in New Issue
Block a user