mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
pgcrypto: Remove inappropriate const qualifier
The function in question does not in fact ensure that the passed argument is not changed, and the callers don't care much either.
This commit is contained in:
@ -136,7 +136,7 @@ mbuf_create(int len)
|
||||
}
|
||||
|
||||
MBuf *
|
||||
mbuf_create_from_data(const uint8 *data, int len)
|
||||
mbuf_create_from_data(uint8 *data, int len)
|
||||
{
|
||||
MBuf *mbuf;
|
||||
|
||||
|
Reference in New Issue
Block a user